How to Begin a Project from the Current Expertiza Repository: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
* Navigate to [https://github.com/expertiza/expertiza the Expertiza repository] and click the fork icon in the upper right corner [[File:Fork.jpg]]
* Navigate to [https://github.com/expertiza/expertiza the Expertiza repository] and click the fork icon in the upper right corner [[File:Fork.jpg]]
* Set up Git on your development machine:
* Set up Git on your development machine:
** You may use either shell commands or a GUI for GIt. I recommend using the shell because the commands are the same cross-platform
** You may use either shell commands or a GUI for GIt. I recommend using the shell because the commands are the same cross-platform.
** [https://help.github.com/articles/set-up-git#platform-linux Linux]
*** [https://help.github.com/articles/set-up-git#platform-linux Linux]
** [https://help.github.com/articles/set-up-git#platform-mac Mac OS X]
*** [https://help.github.com/articles/set-up-git#platform-mac Mac OS X]
** [https://help.github.com/articles/set-up-git#platform-windows Windows]
*** [https://help.github.com/articles/set-up-git#platform-windows Windows]
* Copy the URL of your forked repository
* Copy the URL of your forked repository
** It should be in the form: git@github.com:<Your Github Username>/expertiza.git
** It should be in the form: git@github.com:<Your Github Username>/expertiza.git

Revision as of 22:34, 31 January 2013

  • Login to Github or create an account.
  • Navigate to the Expertiza repository and click the fork icon in the upper right corner
  • Set up Git on your development machine:
    • You may use either shell commands or a GUI for GIt. I recommend using the shell because the commands are the same cross-platform.
  • Copy the URL of your forked repository
    • It should be in the form: git@github.com:<Your Github Username>/expertiza.git
  • On your development machine run:
    git clone git@github.com:<Your Github Username>/expertiza.git
    • The remote is the URL you copied earlier.
  • Now you are in the current Expertiza working directory!