Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update githubcommand.md #40

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion githubcommand.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Along the way, it may be useful to type in: `git status`. It provides git's curr
6. Go through the pull request process on Github. Be sure to delete the Github (remote) branch manually after your pull request happens.

7. Delete the local branch. The first line of code below checks out the master branch with the intent to keep things straight when you later synchronize the remote Github version. When you delete the local branch in the second line of code below, you might receive a warning message that your local changes have not been merged into master -- that is true. You will add the updated Github master in the next step:
`git checkout master`
`git checkout main`
`git branch -d my_new_branch`

8. Update your local repository with the latest updates from Github's version:
Expand Down