Git
How to upload your project to Github!
There some steps :
git clone
git status
git add .
git commit -m "my changes"
git remote add origin https://github.com/zinmyoswe/React-and-Django-Ecommerce.git
git push -u origin master
summary-errors common:
Pushing to Git returning Error Code 403 fatal: HTTP request failed
So you need to change your repo config on your PC to ssh way:
- Edit
.git/config
file under your repo directory. - Find
url=
entry under section[remote "origin"]
. - Change it from:
url=https://MichaelDrogalis@github.com/derekerdmann/lunch_call.git
to:url=ssh://git@github.com/derekerdmann/lunch_call.git
That is, change all the texts before@
symbol tossh://git
- Save
config
file and quit. now you could usegit push origin master
to sync your repo on GitHub.
Use git in colab
- connect colab with google drive by command :{from google.colab import drive; drive.mount(‘/content/drive’)}
- check the file in the folder by command “!ls”
-
change the folder by command “%cd folder path”
- create a new folder by command “import os ; folderpath =“/”; os.makedirs(folderpath,exist_ok=True”)
Offic tools
Interpretable AI
SHAP