© 2020 Morgan C. Benton code4your.life
© 2020 Morgan C. Benton code4your.life
© 2020 Morgan C. Benton code4your.life
© 2020 Morgan C. Benton code4your.life
© 2020 Morgan C. Benton code4your.life
Potential audiences:
Goal: Capture and highlight the key GOALS of the repo,
not necessarily what your program actually does,
but it's good if you can do both
Examples:
© 2020 Morgan C. Benton code4your.life
The .gitignore file is a list of file and directory names (one per line) that should be ignored by git when you run commands like `git add`. These files and folders will NOT be added to your git repo.
Generally these are files/folders that other people would NOT need if they wanted to clone and run your project.
.pytest_cache
__pycache__/
venv/
node_modules/
logs/
coverage/
© 2020 Morgan C. Benton code4your.life
It is extremely important to keep your project files in a logical and organized location on your hard drive.
© 2020 Morgan C. Benton code4your.life
The goal here is to:
© 2020 Morgan C. Benton code4your.life
The goal here is to:
© 2020 Morgan C. Benton code4your.life
The goal here is to:
Each time you complete a small piece, it's a good idea to add those changes and commit them.
© 2020 Morgan C. Benton code4your.life
~$ git add .
~$ git commit -m "added fizz test"
~$ git push
Following this procedure for creating a new project will put you on the right path to a smoother development process.
Although the details will differ, you can/should use the same process for pretty much any programming language.
Happy coding!
© 2020 Morgan C. Benton code4your.life