-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitPullOnAllDirs_Win.py
36 lines (27 loc) · 970 Bytes
/
GitPullOnAllDirs_Win.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# http://stackoverflow.com/questions/89228/calling-an-external-command-in-python
# This script runs "git pull origin master" on all directories under DEV_GIT
#http://stackoverflow.com/questions/431684/how-do-i-cd-in-python
#TODO:
# 1. Get Path from User
# 2. Perform "git pull origin master" on the path
import os
from subprocess import call
myPwd = os.getcwd()
print("\n\n" + myPwd)
os.chdir("C:\PRAGADHE\DEV_GIT\Algos")
print("\n\n" + os.getcwd())
os.system('git pull origin master')
os.chdir("C:\PRAGADHE\DEV_GIT\LearnCpp")
print("\n\n" + os.getcwd())
os.system('git pull origin master')
os.chdir("C:\PRAGADHE\DEV_GIT\LearnPython")
print("\n\n" + os.getcwd())
os.system('git pull origin master')
os.chdir("C:\PRAGADHE\DEV_GIT\LearnJava")
print("\n\n" + os.getcwd())
os.system('git pull origin master')
os.chdir("C:\PRAGADHE\DEV_GIT\OtherLearnings")
print("\n\n" + os.getcwd())
os.system('git pull origin master')
os.chdir(myPwd)
print("\n\n" + os.getcwd())