Create a Virtual Environment
1. mk my_app
2. cd my_app
3. virtualenv.exe venv
4. .\venv\Scripts\activate
# Environment List
conda env list
# Activate environment
conda activate z35
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
git add content/*
git commit -m "Upload folder"
git push origin master
git remote add origin [https://github.com/dragon-library/markdown.git]
git push -u origin master
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"