• git初使用


    git clone 仓库地址 分支地址
    git add .
    cd 同名文件夹(文件夹名称和分支地址名称同名)
    git checkout 分支
    git add .
    git comit -m 'first commit'
    git push

    初始使用理解:

    1. 在配置了名字和邮箱之后
    2. 手动在git上新建分支以后,需要现在某个空文件夹中clone下,这样就有了本地分支,这步很重要,也就是本地文件夹和远程分支同名
    3. 然后cd进入该文件夹,将需要上传的文件复制到该文件夹,checkout切换至远程分支,再运行add .
    4. 运行git commit -m 'first commit',字符串是每次提交修改的补充说明,这步很重要,之后每次修改也得先运行这一步才可以
    5. 最后运行git push
    6. 之后的每次提交就是重复4、5
  • 相关阅读:
    循环神经网络(Recurrent Neural Network)
    特征选择
    程序猿能挣多少钱
    python socket
    python 2 encode and decode
    pandas series
    source collection list
    pep8摘要
    python 正则表达式
    django显示图片
  • 原文地址:https://www.cnblogs.com/guoguocode/p/14044177.html
Copyright © 2020-2023  润新知