Lines Matching full:git
5 1 - Obtaining lwIP from the Git repository
6 2 - Committers/developers Git access using SSH
12 1 Obtaining lwIP from the Git repository
15 To perform an anonymous Git clone of the master branch (this is where
17 git clone git://git.savannah.nongnu.org/lwip.git
20 git clone --branch DEVEL-1_4_1 git://git.savannah.nongnu.org/lwip.git
23 git clone --branch STABLE-1_4_1 git://git.savannah.nongnu.org/lwip.git
26 2 Committers/developers Git access using SSH
30 As such, Git commits to the server occur through a SSH tunnel for project members.
41 ssh -v your_login@git.sv.gnu.org
51 Shared connection to git.sv.gnu.org closed.
54 are allowed to use SSH for Git only. Now, you should be able to do this:
55 git clone your_login@git.sv.gnu.org:/srv/git/lwip.git
58 commit them. Make sure you know what you are doing when using Git to make
62 fingerprint against https://savannah.nongnu.org/git/?group=lwip
68 Merging is a straightforward process in Git. How to merge all changes in a
72 git checkout master
75 git merge your-development-branch
80 git commit -a
83 git push
89 First, tag the release using Git: (I use release number 1.4.1 throughout
91 git tag -a STABLE-1_4_1
94 git push origin STABLE-1_4_1
98 rm -rf lwip-1.4.1/.git lwip-1.4.1/.gitattributes