-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheat_sheet.txt
More file actions
25 lines (17 loc) · 792 Bytes
/
cheat_sheet.txt
File metadata and controls
25 lines (17 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# switch to branch main and run the following command to retrieve the commits, merges and pull requests from the remote repository:
git checkout main
git -c credential.helper= -c core.quotepath=false -c log.showSignature=false fetch origin --recurse-submodules=no --progress --prune
# afterwards run this command to create the git-log.txt
git log --pretty=format:'%h : %s' --graph > git-log.txt
# create a pull request via the terminal:
git checkout main
git merge development
# to run the flask app
export FLASK_APP=movie_database.py
export FLASK_ENV=development
python3 -m flask run
# create an issue on github via terminal
gh issue create --title "title-string" --body "body-string" --assignee @me
GH manual
https://cli.github.com/manual/gh
python3 -m pip freeze > requirements.txt