Study notes for C++ programming
g++ -Wall fileName.cpp -o ex // '-Wall' for displaying 'all warnings'
./ex
touch Makefile // Create Makefile
touch .gitignore // Used to ignore the executable files; '.' makes it invisible from the folder
git init // Initialize an empty git repository under current directory
git status // Check the current status
git add . // Add all files to be tracked on
git rm --cached <filename> // Remove file
git commit
gitk --all& // Show visually what's going on
git diff // Show changings in the source code
git checkout // Go back to the old timeline/ forward to the newest commit (master)
Lectures on Dynamic Programming...