Open Source Comes to Campus/Github pull steps: Difference between revisions

imported>Shauna
No edit summary
imported>Shauna
 
(9 intermediate revisions by the same user not shown)
Line 17:
* Wait for the animation to conclude
 
* Notice that your browser is now visiting a copy of the project in your personal space, rather than the old, group-owned one. You should also see a "fork of..." remark in the top-left. (See [https://openhatch.org/wiki/File:Forks.png here] for screenshot.)
 
== Now, clone to it to your computer ==
Line 33:
* Once you've done that, "cd" into the directory.
 
== Now, makeMake sure you have the project properly set up ==
 
* Open index.html in your favorite text editor -- it should look like a regular HTML page
Line 57:
== Commit and push ==
 
Once you're finished making changes, you can commituse yourthe changesfollowing bycommand typingto get a list of files you've changed:
 
git status
 
You can commit your changes by typing "git add" followed by the files you've changed, for instance:
 
git add index.html
 
Once you've added the changes, you can "commit" them with a message specifying what you've changed.
 
git commit -m "Explanation of my changes"
Line 67 ⟶ 73:
git push
 
Now,You can now visit Github and make sure your personal fork (the repository under your account) contains those changes.
 
== Create pull request ==
 
Now, visitVisit your personal fork and click the "Pull requests" button on the right. This will offer you the chance to "Create...". Explain what you did, and leave a remark that this relates to the issue number you saw.
a remark that this relates to the issue number you saw.
 
Now, get feedback from the project's maintainer, (the mentor leading your group) and eagerly await your pull request getting merged!
 
== Once merged, visit your changes on the web ==
Anonymous user