Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 4be5ec0

Browse files
video titles modified
1 parent 0c2bde6 commit 4be5ec0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

‎c3_introduction_git_github/m3_working_with_remotes/src/L2_scripts.sh‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# Video: Working with Remotes
1+
## Video: Working with Remotes ##
22
git remote -v # check configuration of remote
33
git remote show origin # get more information about our remote
44
git branch -r # look at the remote branch that our Git repo is currently tracking
55
git status # tells us that our branch is up to date with the origin/master branch
66

7-
# Video: Fetching New Changes
7+
## Video: Fetching New Changes ##
88
git fetch # copies the commits done in the remote repository to the remote branches
99

10-
# Video: Updating the Local Repository
10+
## Video: Updating the Local Repository ##
1111
git pull # fetch the remote copy of the current branch and automatically try to merge it
1212
git remote show origin # get more information about our remote
1313
git checkout experimental # create a local branch

‎c3_introduction_git_github/m3_working_with_remotes/src/L3_scripts.sh‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Video: The Pull-Merge-Push Workflow
1+
## Video: The Pull-Merge-Push Workflow ##
22
code all_checks.py # modify file
33
git add -p
44
git commit -m "Rename min_absolute to min_gb, use parameter names"
@@ -9,7 +9,7 @@ git add all_checks.py
99
git commit
1010
git push
1111

12-
# Video: Pushing Remote Branches
12+
## Video: Pushing Remote Branches ##
1313
git checkout -b refactor # create and switch to new branch
1414
code all_checks.py # modify
1515
git commit -a -m "Create wrapper function for check_disk_full"

‎c3_introduction_git_github/m3_working_with_remotes/src/L4_scripts.sh‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Video: Rebasing your changes
1+
## Video: Rebasing your changes ##
22
git checkout master # switch to master branch
33
git pull # get the latest changes from the remote repository
44
git log --graph --oneline --all # view the commits in log which we want to rebase
@@ -11,7 +11,7 @@ git push --delete origin refactor # delete the remote branch
1111
git branch -d refactor # delete the local branch
1212
git push # push the changes to the remote repository
1313

14-
# Video: Another Rebasing example
14+
## Video: Another Rebasing example ##
1515
# NOTE: working on small changes, hence no need to create a new branch
1616
code all_checks.py # modify file
1717
git commit -a -m 'Add a simple network connectivity check'

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /