Skip to content

Commit

Permalink
Merge pull request UniCourt#3 from saketg-uc/main
Browse files Browse the repository at this point in the history
updating git docs
  • Loading branch information
snehals-uc authored Mar 21, 2023
2 parents e3a812b + 954e86e commit 60f4b0c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,9 @@ One Day workshop on understanding Docker to package applications into containers
## **Schedule**
| Time | Topics
| -- | --
| 09:00 - 10.00 | [`Docker`](docs/Docker.pdf)
| 10.30 - 01.00 | [`Git`](git/github_intro.md)
| 1.00 - 2.00 | [ `Break` ]
| 2.00 - 3.00 | [`Javascript`](docs/Javascript_&_NodeJS.pdf) & [`Typescript`](docs/TypeScript.pdf)
| 3.00 - 5.00 | [ `Node js` ](holiday-app/README.md)
| 09:00 - 10:15 | [`Git`](/git/Git_Workshop.pdf)
| 10:15 - 10:30 | [ `Tea Break` ]
| 10:30 - 01:00 | [`Docker`](/Docker/Docker.pdf)
| 1:00 - 2:00 | [ `Break` ]
| 2:00 - 3:00 | [`Javascript & Typescript`](/JS%20and%20TS/JavaScript%20and%20Typescript.pdf)
| 3:00 - 5:00 | [ `Node js` ]()
Binary file added git/Git_Workshop.pdf
Binary file not shown.
7 changes: 7 additions & 0 deletions git/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 60f4b0c

Please sign in to comment.