刚进一个新公司,使用的是git工具,他们给了我个git地址叫我把这个down下来
但是现在down下来是不用能,要怎么用,他还给了一个
然后就这样了,我该怎么才能用下载下来的zip文件?
还有下面这个命令行要怎么用?
某草草2017-05-02 09:27:12
The Zip you downloaded is the source code that has been separated from the Git library. If you want to keep it in the Git library, you need to use Git clone to clone the source code locally.
Looking at your attitude, you don’t know how to use Git at all. Go read the tutorial first. You can’t figure out why by asking like this.
为情所困2017-05-02 09:27:12
You don’t know how to use GIT.
Let me teach you a few simple ones first
Initialize git
cd /dir/
git init
Add git source
git remote add origin git@192.168.xxx:xxx/project.git
git pull origin master
Submit
git add ./path/to/file
git commit -m 'change for what?'
git push origin master
These are the commonly used ones
I can only help you here, for the rest, please check out the git tutorial
世界只因有你2017-05-02 09:27:12
Spend 2 hours and look at this https://git-scm.com/book/zh/v2 and you’ll be fine