Github一些基本命令

2021-10-05 06:28:51 字數 476 閱讀 3870

git --version //檢視git版本

git --init //初始化git

git status//查詢當前git狀態

git config --global user.name " "//設定使用者名稱

git config --global user.email" "//設定郵箱名

git add. //將該資料夾裡的所有檔案推到working directory

git add 檔名//把某個檔案推到working directory

git commit -m//新增上傳該檔案的注釋

git remote add origin ***//和github裡的倉庫建立連線

git remote -v //檢視該連線

git branch //檢視目前所在github的branch

git push origin master //將快取區檔案上傳到github

MySQL一些基本命令

1 mysql服務的啟動和停止 net stop mysql net start mysql 2 登陸mysql 語法如下 mysql u使用者名稱 p使用者密碼 鍵入命令mysql uroot p,回車後提示你輸入密碼,輸入12345,然後回車即可進入到mysql中了,mysql的提示符是 mys...

一些Linux (ubuntu )基本命令

新增使用者 useradd username 更改密碼 sudo passwd username 修改 etc sudoers 可以為使用者賦予 sudo 許可權 給某ip機器遠端訪問mysql 的許可權 mysql grant all privileges on to username 1.2.3...

MySQL一些基本命令

1 mysql服務的啟動和停止 net stop mysql net start mysql 2 登陸mysql 語法如下 mysql u使用者名稱 p使用者密碼 鍵入命令mysql uroot p,回車後提示你輸入密碼,輸入12345,然後回車即可進入到mysql中了,mysql的提示符是 mys...