From 08ce47a496dd89f2bcf8762185e520a5817fd4fd Mon Sep 17 00:00:00 2001 From: bailbush Date: Sat, 19 Oct 2019 11:26:59 -0400 Subject: [PATCH 1/4] explanation of how git pull functions --- reference/static/commands/tools/git pull.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 reference/static/commands/tools/git pull.md diff --git a/reference/static/commands/tools/git pull.md b/reference/static/commands/tools/git pull.md new file mode 100644 index 0000000..0540e48 --- /dev/null +++ b/reference/static/commands/tools/git pull.md @@ -0,0 +1,5 @@ +git pull +------- + +Git pull combines the two commands 'git fetch' and 'git merge' together to fetch the files from your remote directory then merge them to your current working space. + From 4afbdd51619f440168a68d1ed5ff9e6c3f150b9e Mon Sep 17 00:00:00 2001 From: bailbush Date: Sat, 19 Oct 2019 11:44:33 -0400 Subject: [PATCH 2/4] explanation of how git pull functions --- reference/static/commands/tools/git.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reference/static/commands/tools/git.md b/reference/static/commands/tools/git.md index f8f25dc..0278bcc 100644 --- a/reference/static/commands/tools/git.md +++ b/reference/static/commands/tools/git.md @@ -1,5 +1,8 @@ git ------- +**git pull** + +Git pull combines the two commands 'git fetch' and 'git merge' together to fetch the files from your remote directory then merge them to your current working space. Short description of the command From 64bc2929469017138709b635067ded99f2db9e89 Mon Sep 17 00:00:00 2001 From: bailbush <45155557+bailbush@users.noreply.github.com> Date: Wed, 4 Dec 2019 12:12:11 -0500 Subject: [PATCH 3/4] Delete git pull.md --- reference/static/commands/tools/git pull.md | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 reference/static/commands/tools/git pull.md diff --git a/reference/static/commands/tools/git pull.md b/reference/static/commands/tools/git pull.md deleted file mode 100644 index 0540e48..0000000 --- a/reference/static/commands/tools/git pull.md +++ /dev/null @@ -1,5 +0,0 @@ -git pull -------- - -Git pull combines the two commands 'git fetch' and 'git merge' together to fetch the files from your remote directory then merge them to your current working space. - From a053c285de0fde4a547688b27f7ac272e66a8719 Mon Sep 17 00:00:00 2001 From: bailbush <45155557+bailbush@users.noreply.github.com> Date: Thu, 19 Dec 2019 17:57:11 -0500 Subject: [PATCH 4/4] update to git pull documentation --- reference/static/commands/tools/git.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/static/commands/tools/git.md b/reference/static/commands/tools/git.md index 0278bcc..f954387 100644 --- a/reference/static/commands/tools/git.md +++ b/reference/static/commands/tools/git.md @@ -2,7 +2,7 @@ git ------- **git pull** -Git pull combines the two commands 'git fetch' and 'git merge' together to fetch the files from your remote directory then merge them to your current working space. +Git pull combines the two commands 'git fetch' and 'git merge' together to fetch the files from your remote directory then merge them to your current working space. The way you use this command is by going into a functioning git repository and calling git pull. There are some useful tags you can add to it such as adding extra branch tags so for example if you used git pull origin master:dev which would update your local devlopment branch using the remote origin branch master. Another useful flag is when you call git pull --rebase which instead of using git merge to integrate the remote branch with the local branch, it uses git rebase instead. Short description of the command