Lines Matching +full:- +full:- +full:git
5 1 - Obtaining lwIP from the Git repository
6 2 - Committers/developers Git access using SSH
7 3 - Merging a development branch to master branch
8 4 - How to release lwIP
12 1 Obtaining lwIP from the Git repository
13 ----------------------------------------
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
27 --------------------------------------------
30 As such, Git commits to the server occur through a SSH tunnel for project members.
31 To create a SSH2 key pair in UNIX-like environments, do this:
32 ssh-keygen
41 ssh -v your_login@git.sv.gnu.org
44 Linux vcs.savannah.gnu.org 2.6.32-5-xen-686 #1 SMP Wed Jun 17 17:10:03 UTC 2015 i686
51 Shared connection to git.sv.gnu.org closed.
53 then you could login; Savannah refuses to give you a shell - which is OK, as we
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
59 changes on the repository. If in doubt, ask on the lwip-members mailing list.
62 fingerprint against https://savannah.nongnu.org/git/?group=lwip
65 3 - Merging a development branch to master branch
66 -------------------------------------------------
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
87 ---------------------
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
97 cp -r lwip lwip-1.4.1
98 rm -rf lwip-1.4.1/.git lwip-1.4.1/.gitattributes
101 tar czvf lwip-1.4.1.tar.gz lwip-1.4.1
102 tar cjvf lwip-1.4.1.tar.bz2 lwip-1.4.1
103 zip -r lwip-1.4.1.zip lwip-1.4.1
106 gpg -b lwip-1.4.1.tar.gz
107 gpg -b lwip-1.4.1.tar.bz2
108 gpg -b lwip-1.4.1.zip