-
Notifications
You must be signed in to change notification settings - Fork 46
Lesson2b VersionControl
Back To Local Version Control - [[Forward to Python Shell and Variables | Python1-ShellAndVariables]]
GitHub is a site where many people store their open (and closed) source code repositories. It provides tools for browsing, collaborating on and documenting code.
Setting up github at first requires [[some setup | http://help.github.com/set-up-git-redirect]].
Once you've set up your rsa keys, you need to tell github who you are. Crack open a terminal.
$ git config --global user.name "Firstname Lastname" $ git config --global user.email "[email protected]"
Unless your name is Firstname Lastname, please don't copy the above lines verbatim. Make the appropriate substitutions.
If you did this properly, you'll have a file in your home (~) directory that's called .gitconfig . It's contents should look like :
[user] name = Katy Huff email = [email protected]
This configuration step allows github to properly credit the authorship of changes you make in your repository. For projects with numerous authors, this is essential.
Another configuration step for some will be to set their favorite text editor as git's text editor of choice. This is optional, since vi is usually the default, but can be done with the following command (if you like nano for example):
$ git config --global core.editor nano
A key step to interacting with an online repository that you have forked is adding the original as a remote repository. By adding the remote repository, you inform git of a new option for fetching updates and pushing commits.
The git remote command allows you to add, name, list, and delete repositories such as the original one upstream from your fork, others that may be parallel to your fork, and so on.
While you probably already have a copy of the PyTrieste repository, GitHub doesn't know about it yet. You'll need to tell github you want to have an official fork of this repository.
Step 1 : Go to our [[repository | https://github.com/thehackerwithin/PyTrieste/]] from your browser, and click on the Fork button. Choose to fork it to your username rather than any organizations.
Step 2 : Clone it. From your terminal :
$ git clone [email protected]:username/PyTrieste.git $ cd PyTrieste
Step 3 :
$ git remote add upstream git://github.com/thehackerwithin/PyTrieste.git $ git remote -v origin [email protected]:username/PyTrieste.git (fetch) origin [email protected]:username/PyTrieste.git (push) upstream git://github.com/thehackerwithin/PyTrieste.git (fetch) upstream git://github.com/thehackerwithin/PyTrieste.git (push)
Now that you have alerted your repository to the presence of others, it is able to pull in updates from those repositories. In this case, if you want your master branch to track updates in the original PyTrieste repository, you simply fetch that repository into the master branch of your current repository.
Step 1 : Fetch it
$ git fetch upstream
Step 2 : Check it
$ ls
The command git pull is the same as executing git fetch followed by git merge. Though this is shorter in simple cases, it is not recommened for cases in which there are many branches to consider.