Trinity Desktop Environment Packaging
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 
Dosyaya git
TDE Gitea c63d3e755c
Reset submodule packaging/gentoo to latest HEAD
3 gün önce
arch ArchLinux: Update for rebuild with Poppler 24.01. 2 ay önce
ark Initial import from old SVN repository 13 yıl önce
debian DEB: add tde-style-polyester packaging files 4 gün önce
dilos DEB tde-i18n: Use more general dependency for tdelibs, second part. 4 gün önce
fedora Updates for TDE 3.5.12 for RHEL5 13 yıl önce
freebsd FreeBSD: Update for final R14.1.1. 5 ay önce
gentoo@2769940be4 Reset submodule packaging/gentoo to latest HEAD 3 gün önce
mageia RPM packaging: remove obsolete file 9 yıl önce
openbsd tdebase: adjusted to release_notes -> tde_release_notes change. 4 yıl önce
opensuse RPM Packaging: update qt3 for opensuse 9 yıl önce
raspbian DEB: updated supported distros. 1 yıl önce
redhat RPM: update build script for el9 11 ay önce
slackware Initial import from old SVN repository 13 yıl önce
ubuntu DEB tdebase: update ubuntu 'kubuntu_89_new_logout_ui.diff' patch to make sure default values are synced between TCC and shutdown dialog 4 gün önce
.gitmodules Gentoo: Files moved to a separate git repository. 4 yıl önce
README.GIT Update README.GIT file with link to Wiki 9 yıl önce

README.GIT

============================================================ DOCUMENTATION =======================================================

GIT tutorial on github:
http://schacon.github.com/git/gittutorial.html

GIT "cheat sheet"
http://jonas.nitro.dk/git/quick-reference.html

GIT for those who are used to centralized SCMs:
http://media.pragprog.com/titles/tsgit/chap-005-extract.html

TDE GIT documentation:
https://wiki.trinitydesktop.org/Project_GIT_Information

================================================================ HOWTO ===========================================================

To get a copy of the repo:
	git clone http://your-username@scm.trinitydesktop.org/scm/git/<repository name>

To exclude items:
	Create a file '.gitignore'

To add to the git repository (easiest and most efficient way):
	git add .
(this will add everything in the folder (excluding stuff from .gitignore). It is intentionally a period because * will make git stop on already committed files.)

To commit to the git repository (this does not send to the remote server!):
	git commit -a
(no need to do any git mv or git rm or any of that with the -a option.)

To pull recent commits from the remote git repository:
	git pull
(do this before pushing so that you don't collide with other's commits.)

To push to the remote git repository:
	git push origin master
(the 'origin master' part is optional after the first time.)

To branch (be careful! This is different from SVN.):
	git branch <name>
(don't know what branch you're on? run "git branch" to see and list.)

To switch branches:
	git checkout <branch name>

To tag a commit (like for releasing a tarball):
	git tag -a <version> -m <message>
(ps: this will make webgit generate a tarball with this tag.
easy releases anyone?)

To tag a commit WITH GPG verification (secure release anyone?):
	git tag -s <version> -m <message>



================================================================= NOTE ============================================================
GIT cannot store empty directories due to a intentional design limitation.

Therefore, this command should be run prior to any commits to ensure your empty directories stick around:

find . -type d -empty -exec touch {}/.gitignore \;

This will add a .gitignore to every empty directory.

================================================================ WORKFLOW ==========================================================


git clone http://your-username@scm.trinitydesktop.org/scm/git/<repository>

<make your changes, test, etc>

cd <repository checkout directory>
find . -type d -empty -exec touch {}/.gitignore \;
git add .
git commit -a
git pull
git push