application icongmusicbrowser

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
guide:git [2010/08/16 23:38] – add link to download snapshot from github squentinguide:git [2013/04/23 17:31] – update sourceforge git url squentin
Line 5: Line 5:
 gmusicbrowser git repositories : gmusicbrowser git repositories :
   * github : http://github.com/squentin/gmusicbrowser   * github : http://github.com/squentin/gmusicbrowser
-  * sourceforge : http://gmusicbrowser.git.sourceforge.net/git/gitweb.cgi?p=gmusicbrowser/gmusicbrowser;a=summary+  * sourceforge : https://sourceforge.net/p/gmusicbrowser/code/ci/master/tree/
  
 this link will download a snapshot of the latest version : http://github.com/squentin/gmusicbrowser/tarball/master this link will download a snapshot of the latest version : http://github.com/squentin/gmusicbrowser/tarball/master
Line 81: Line 81:
 Do not use rebase on branch you published, as rebase rewrite the history of the branch, use merge instead. Do not use rebase on branch you published, as rebase rewrite the history of the branch, use merge instead.
  
 +===== Cloning branches from other repository =====
 +You can easily track branches from other repository, for example, to track ochosi's branch :
 +<code>
 +git remote add ochosi git://github.com/ochosi/gmusicbrowser.git
 +git fetch ochosi
 +git checkout -b ochosi ochosi/master
 +</code>
 +The first line creates a new remote named "ochosi" (you can list the remotes with "git remote")
 +
 +The second line fetches the remote's data, and create the remote branches, here ochosi/master (you can view it with "git branch -a")
  
 +the third creates a local branch "ochosi" that tracks the remote branch "ochosi/master"
guide/git.txt · Last modified: 2022/05/23 01:30 by 127.0.0.1
CC Attribution-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0