forked from UniCourt/Analytics-Workshop1
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request UniCourt#3 from saketg-uc/main
updating git docs
- Loading branch information
Showing
3 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,13 @@ For example, | |
|
||
git remote add upstream "[email protected]:UniCourt/WebApp-Workshop1.git" | ||
|
||
Fetch all branches from all remotes | ||
|
||
git fetch --all | ||
|
||
To sync local repository with remote repository | ||
|
||
git pull upstream <branch_name> | ||
|
||
## Create a branch | ||
Branches allow you to develop features, fix bugs, or safely experiment with new ideas in a contained area of your repository. You always create a branch from an existing branch. Typically, you might create a new branch from the default branch of your repository. | ||
|