美文网首页
git相关命令

git相关命令

作者: 鹊南飞_ | 来源:发表于2020-06-10 17:41 被阅读0次

    1. git首次提交

    1. 设置全局参数
    git config --global user.email "you@example.com"
    git config --global user.name "Your Name"
    
    1. 上传代码
    cd existing_folder
    git init
    git remote add origin http://localhost/kun/kml.git
    git add .
    git commit -m "Initial commit"
    git push -u origin master
    

    2. git新增gitignore文件

    1. 在项目路径下添加.gitignore文件
    touch .gitignore
    
    1. 编辑文件
    vim .gitignore
    
    1. 如在文件中添加以下内容
    *.pyc
    
    1. 清除已经上传的多余文件
    • 文件夹
    git rm -r --cached 文件夹名
    
    • 文件
    git rm --cached 文件名
    

    3. 解决github加速访问以及图片不能显示的问题

    找到host文件,windows的hosts文件位于C:\Windows\System32\drivers\etc\hosts
    添加以下内容

    # GitHub Start 
    192.30.253.112    github.com 
    192.30.253.119    gist.github.com
    151.101.184.133    assets-cdn.github.com
    151.101.184.133    raw.githubusercontent.com
    151.101.184.133    gist.githubusercontent.com
    151.101.184.133    cloud.githubusercontent.com
    151.101.184.133    camo.githubusercontent.com
    151.101.184.133    avatars0.githubusercontent.com
    151.101.184.133    avatars1.githubusercontent.com
    151.101.184.133    avatars2.githubusercontent.com
    151.101.184.133    avatars3.githubusercontent.com
    151.101.184.133    avatars4.githubusercontent.com
    151.101.184.133    avatars5.githubusercontent.com
    151.101.184.133    avatars6.githubusercontent.com
    151.101.184.133    avatars7.githubusercontent.com
    151.101.184.133    avatars8.githubusercontent.com
    

    相关文章

      网友评论

          本文标题:git相关命令

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