How to use the zip file downloaded manually by git
给我你的怀抱
给我你的怀抱 2017-05-02 09:25:12
0
4
1102
刚进一个新公司,使用的是git工具,他们给了我个git地址叫我把这个down下来

但是现在down下来是不用能,要怎么用,他还给了一个

然后就这样了,我该怎么才能用下载下来的zip文件?
还有下面这个命令行要怎么用?

给我你的怀抱
给我你的怀抱

reply all(4)
某草草

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.

为情所困

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

伊谢尔伦

Liao Xuefeng’s git tutorial
You can try this introduction

世界只因有你

Spend 2 hours and look at this https://git-scm.com/book/zh/v2 and you’ll be fine

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template