Skip to content
This repository has been archived by the owner on Aug 22, 2020. It is now read-only.

Commit

Permalink
updating Git_BasicCommands
Browse files Browse the repository at this point in the history
  • Loading branch information
ebeshero committed Jan 10, 2019
1 parent 460e8d8 commit f906a34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Git_BasicCommands.md
Expand Up @@ -88,7 +88,7 @@ I
```
esc : w q
```
That's the escape key then colon, w, and q. This combination let's you escape out of the commit-editing window, then :wq is to write and quit the vi editor. This will bring you back to the terminal / command line prompt where you normally write git commands.
That's the escape key, then colon, w, and q. This combination let's you escape out of the commit-editing window, then :wq is to write and quit the vi editor. This will bring you back to the terminal / command line prompt where you normally write git commands.

* Now, type `git status` and it should tell you that you're ready to push two (or more) commits (the result of your merge plus your first commits that were never pushed). It should prompt you to do a `git push`. So do that. Type
```
Expand All @@ -97,7 +97,7 @@ git push
And the merge should be resolved.

## Merge conflicts
A variation on the merge issue above involves multiple team members working on a file and pushing at nearly the same time. The edits may be in locations where it is difficult for GitHub to automatically figure out how to merge them. When you attempt to pull these in, you will be told that GitHub cannot automatically complete the merge. Don't panic, but **do** be patient.
A variation on the merge issue above involves multiple team members working on a file and pushing at nearly the same time. The edits may be in locations where it is difficult for GitHub to automatically figure out how to merge them. When you attempt to pull these in, you will be told that GitHub cannot automatically complete the merge. **Don't panic, but do be patient.**

* First, you may want to inform your team members that there is a merge conflict and you're going to work on resolving it, and that they should wait to hear from you before trying any new commits.

Expand Down

0 comments on commit f906a34

Please sign in to comment.