git pull is one of many commands that claim the responsibility of 'syncing' remote content. The git remote command is used to specify what remote endpoints the syncing commands will operate on. The git push command is used to upload content to a remote repository. The git fetch command can be confused with git pull .
history
1 cd c:
2 ls
3 ls -a
4 pwd
5 cd c:
6 ls
7 mkdir gitexamples_excelr
8 ls
9 cd gitexamples_excelr/
10 clear
11 cls
12 pwd
13 ls
14 mkdir subfolder
15 ls
16 cd subfolder/
17 cls
18 clear
19 cd ..
20 cd
21 cd 'c//gitexamples_excelr'
22 cd '/c/gitexamples_excelr'
23 cd subfolder
24 touch file1.txt file2.csv
25 ls
26 clear
27 mkdir dummy
28 ls
29 rm file.csv
30 rm file2.csv
31 ls
32 touch file2.txt
33 touch file3.txt
34 ls
35 rm file2.txt file3.txt
36 ls
37 clear
38 touch touch2.txt touch2.csv
39 ls
40 rm *.txt
41 ls
42 rm dummy
43 rm -f dummy
44 rmdir dummy/
45 ls
46 mkdir folder_new
47 ls
48 rm -rf folder_new/
49 ls
50 mkdir folder_rec
51 cd folder_rec/
52 touch s.txt
53 cd..
54 ls
55 cd ..
56 ls
57 rmdir folder_rec/
58 rm -rf folder_rec/
59 ls
60 history
61 clear
62 cd c:
63 cd gitexamples_excelr/
64 git init
65 ls
66 git status
67 cd
68 git init
69 cd c:
70 cd gitexamples_excelr/
71 git init
72 git init
73 ls
74 git checkout ravi
75 cd c:
76 cd
77 ls
78 mkdir gitexample
79 ls
80 cd gitexample/
81 git init
82 clear
83 ls
84 mkdir online_example
85 git init
86 git status
87 git config --global --add safe.dirctory C:/
88 git status
89 cd
90 git branch
91 git branch ravi
92 touch branch1.txt
93 git branch
94 git add .
95 git status
96 clear
97 git commit -m "branch code added"
98 git status
99 git log
100 git checkout ravi
101 ls
102 touch branchravi.txt
103 git status
104 git add .
105 git status
106 git commit -m "branch ravi added"
107 git log
108 git push -u origin ravi
109 history
110 git status
111 pwd
112 git branch
113 git checkout master
114 ls -l
115 vi 2.txt
116 git status
117 git diff 2.txt
118 clear
119 git diff
120 git add 2.txt
121 git add .
122 git status
123 git commit -m "2.txt updated"
124 vi 2.txt
125 git status
126 git add .
127 git status
128 git commit -m "2.txt added one more line"
129 git status
130 vi 3.txt
131 git add .
132 git status
133 git diff
134 git restore --staged 3.txt
135 git status
136 git diff
137 git restore 3.txt
138 git status
139 cat 3.txt
140 ls
141 git checkout ravi
142 ls
143 git checkout master
144 git branch checkout kiran
145 git branch kiran
146 git checkout kiran
147 ls
148 touch kiran.txt
149 git status
150 git add kiran.txt
151 git status
152 git commit -m "kiran.txt added to kiran branch"
153 git log
154 git status
155 ls
156 git checkout ravi
157 ls
158 git merge ravi kiran
159 ls
160 git checkout kiran
161 ls
162 git merge ravi kiran
163 ls
164 git checkout ravi
165 ls
166 git about.html
167 touch about.html
168 git add about.html
169 git status
170 ls
171 giy checkout ravi
172 git checkout kiran
173 ls
174 git merge kiran ravi
175 cd C:
176 cd gitexample
177 git checkout
178 git checkout maste
179 git checkout master
180 ls
181 git merge ravi master
182 ls
183 git merge master kiran
184 git merge ravi kiran
185 git pull origin kiran
186 ls
187 git checkout ravi
188 ls
189 git merge master ravi
190 ls
191 git branch
192 git checkout kiran
193 ls
194 git checkout ravi
195 ls
196 git checkout master
197 ls
198 git branch
199 git branch
200 git branch
201 git fetch remote_branch
202 git branch remote_branch
203 git checkout remote_branch
204 git status
205 ls
206 git fetch -all
207 git fetch --all
208 ls
209 git merge
210 git merge master origin/gitexample_excelr
211 git merge master origin/remote_branch
212 ls
213 git remote -v
214 git remote set -head origin -a
215 git log --oneline
216 cat .git/head
217 git branch
218 ls
219 git status
220 git checkout master
221 ls
222 git aboutus.js cart.js
223 touch aboutus.js cart.js
224 git add .
225 git status
226 git commit -m "aboutus cart .js files added"
227 git status
228 git log --oneline
229 touch offer.js
230 git status
231 git add .
232 git commit -m "offer.js code added"
233 git status
234 touch profile.js
235 git reset --soft HEAD
236 git add profile.js
Watch video GIT BASH & GIT HUB PUSH AND PULL REQUEST online, duration hours minute second in high quality that is uploaded to the channel Technology with Kiran 06 May 2024. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 40 times and liked it 0 visitors.