User Tools

Site Tools


git_and_github_notes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Last revisionBoth sides next revision
git_and_github_notes [2018/03/04 08:30] – created jtkorbgit_and_github_notes [2018/03/04 11:42] – [Accepting Pull Requests from the Command Line] jtkorb
Line 13: Line 13:
 ===== Accepting Pull Requests from the Command Line ===== ===== Accepting Pull Requests from the Command Line =====
  
-to be added+Step 1: From your project repository, check out a new branch and test the changes. 
 + 
 +  git checkout -b jtkorb-master master 
 +  git pull https://github.com/jtkorb/jtkorb.github.io.git master 
 + 
 +Step 2: Merge the changes and update on GitHub. 
 + 
 +  git checkout master 
 +  git merge --no-ff jtkorb-master 
 +  git push origin master 
git_and_github_notes.txt · Last modified: 2018/03/04 11:43 by jtkorb