I have downloaded a windows version. GitHub for Windows... Maybe the best way is to use the command line which I will investigate later.
This is the tool GitHub for Windows, which can be obtained here: https://git-scm.com/download/win
The problem is that we are under company proxy and there is no option to change it. Luckily there is a solution.
1. Open the file
C:\Users\YOURNAME\.gitconfig
2. Add there two lines
[http]
proxy = http://YOUR_COMPANY_PROXY:8080
[https]
proxy = http://YOUR_CONPANY_PROXY:8080
OK, all set!
By I feel using command line is more convenient.
1. clone
git clone REPOSITORY URLfor example
2. update
1) cd to the folder for example Spark
2) git pull
For the turorial of Git, we can check the great website, many thanks to the author!
http://rogerdudler.github.io/git-guide/
If you think this article is useful, please click the ads on this page to help. Thank you very much.
No comments:
Post a Comment