search

Home  >  Q&A  >  body text

How to use the zip file downloaded manually by git

刚进一个新公司,使用的是git工具,他们给了我个git地址叫我把这个down下来

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

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

给我你的怀抱给我你的怀抱2794 days ago1098

reply all(4)I'll reply

  • 某草草

    某草草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.

    reply
    0
  • 为情所困

    为情所困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

    reply
    0
  • 伊谢尔伦

    伊谢尔伦2017-05-02 09:27:12

    Liao Xuefeng’s git tutorial
    You can try this introduction

    reply
    0
  • 世界只因有你

    世界只因有你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

    reply
    0
  • Cancelreply