Difference between revisions of "Guide to Using Git"

From GlueXWiki
Jump to: navigation, search
(Creating a local clone of the repository)
(Creating a local clone of the repository)
Line 9: Line 9:
 
*** <code>cd $GLUEX_TOP/hdds/</code>
 
*** <code>cd $GLUEX_TOP/hdds/</code>
 
*** <code>git clone https://github.com/jeffersonlab/hdds/ <mydir></code>
 
*** <code>git clone https://github.com/jeffersonlab/hdds/ <mydir></code>
 +
 +
=== References ===
 
* Guide: https://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository
 
* Guide: https://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository
* Reference: http://git-scm.com/docs/git-clone
+
* Manual: http://git-scm.com/docs/git-clone
 +
 
 +
== Add new files to git ==
 +
* If you create new files or directories, they are initially "untracked;" you need to add them to git to track them.  To add files to git:
 +
** <code>git add <myfile></code>
 +
 
 +
=== References ===
 +
* Guide: https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository
 +
* Manual: http://git-scm.com/docs/git-add
  
 
== Create a local branch ==
 
== Create a local branch ==

Revision as of 16:33, 29 July 2015

Creating a local clone of the repository

  • The first thing you need to do is to create a clone of the master repository on your local machine. The "git clone" command pulls all of the code, branches, etc. for the entire history of the project into the current, local directory.
  • In general, you might want to have several separate branches of the repository built simultaneously on your machine. For example, you may want to have a program running off of "VersionA" and meanwhile develop code separately on "VersionB." To do this, you need multiple clones of the repository.
  • To create a clone of the master repository into the directory <mydir>:

References

Add new files to git

  • If you create new files or directories, they are initially "untracked;" you need to add them to git to track them. To add files to git:
    • git add <myfile>

References

Create a local branch

    • cd sim-recon
    • git branch my_work
  1. Check-out the new branch
    • git checkout my_work