On 01/20/13 15:36, Ivanko B wrote:
> How to switch to (to build projects for,..) the new branch ?


To see what branches there are (all branches - local and remote)..

    git branch -a

To see if you have any local modifications (before switching to another
branch).

   git status -uno

Stash those local modifications for later...

   git stash

To switch to one of the other branches.

   git checkout <branch_name>

To get those local modifications back (that you stashed before)

   git stash pop

To see how everything relates to each other.

   gitk --all



Regards,
  - Graeme -

-- 
fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal
http://fpgui.sourceforge.net/


------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_123012
_______________________________________________
mseide-msegui-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to