美文网首页
git 上手

git 上手

作者: yuerxiaoshui | 来源:发表于2020-10-30 10:28 被阅读0次
    • mkdir dir_name
    • git init
    • git config --global user.name "xxx" | git config --global user.email "xxx"
    • in Github website, create a new repository and name it "myrepo"
    • git remote add newName url(your new repository)
    • git add file1
    • git commit -m "Message"
    • git push -u newName master
    • check Github's repository, it works

    相关文章

      网友评论

          本文标题:git 上手

          本文链接:https://www.haomeiwen.com/subject/sgvlvktx.html