甄文超

TNT 数字生活

All Posts in 2023.10





uos 安装git

1、首先确定linux系统中是否安装了git, 直接在命令行模式下输入git ,出现下面的界面就是安装好了的   2、# sudo apt-get install git   3、配置账号 git config --global user.name "ge-heima" git config --global user.email "754263923@qq.com" git config --global credential.helper store 查看配置信息 git config --list   4、clone git clone https://github.com/tianqixin/runoob-git-test   5、选择分支 所有分支 git branch -a 本地分支 git branch 签出出并切换分支 git checkout -b v0.9rc1 …

Linux git