github Ubuntu 使用教程

本文目的是为了自己整理一下github的使用教程,参考链接见文后。

what is git?

github desktop:

  • ubuntu (install success but can't launch)
    sudo snap install github-desktop --beta --classic
  • windows;
  • macOS;

other GUI for Github:

  • GitKraken

use manuel:

  • 首先安装git
sudo apt-get install git
  • 和github账户链接
git config --global user.name "user_name" # 用户名代替user_name
git config --global user.email "email_id" # email 代替email_id
  • 建立本地库(这个库要和github网页上面的互联)
git init Mytest(如果想建立在不同的文件夹,建议使用完整地址代替Mytest)
  • cd到本地库,建立readme文件
  • 建立想用的code文件
  • 讲文件添加到index
git add readme

取消add

git reset
  • commit
git commit -m "information"
  • github 建立和本地库名字一毛一样的库
git remote add origin https://github.com/user_name/Mytest.git
  • 讲本地库的内容push到github上面去
git push origin master

上述方式只适合建立新的github库的时候;如果适合已有的github库建立联系
首先需要

git clone https://github.com/user_name/repo_name.git
git init
git add
git commit
git remote add origin
git push

git add file

git add --all folder/

https://help.github.com/en/github/managing-files-in-a-repository/adding-a-file-to-a-repository-using-the-command-line

git push 不在需要密码

参考网址:https://todebug.com/Tips/

一个快速了解git的网站:

https://learngitbranching.js.org/?demo

你可能感兴趣的:(github Ubuntu 使用教程)