Skip to content
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
1 change: 0 additions & 1 deletion docs/add_commit.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ git commit -m "My hello world" # This will tell git that we want to package all
# The origin doesn't know about your branch or your code at this point so we have to tell it where to put our branch when we push it.
# The --set-upstream part of the command say push our branch to the origin with the branch name <your branch name>
git push --set-upstream origin <your branch name>
# Now the link between the local repository and origin has been made (merge conflict), subsequent pushes can be done with just git push.
```