Start Project
Virtual Environment
Create a Virtual Environment
1. mk my_app
2. cd my_app
3. virtualenv.exe venv
4. .\venv\Scripts\activate
Conda Environment
# Environment List
conda env list
# Activate environment
conda activate z35
Git
create a new repository on the command line
echo "# markdown" >> README.md
git init
git add [README.md]
git commit -m "first commit"
git remote add origin [https://github.com/dragon-library/markdown.git]
git push -u origin master
Add
git add content/*
git commit -m "Upload folder"
git push origin master
Push
git remote add origin [https://github.com/dragon-library/markdown.git]
git push -u origin master
View Setting
git config --list --show-origin
Setting an email address in Git:
git config --global user.email "yo_sarawut@hotmail.com"
git config --global user.name "yosarawut"
Last updated
Was this helpful?