Kayıtlar

git status etiketine sahip yayınlar gösteriliyor

Git History / File Management Commands

Git History / File Management Commands Lecture Command Listing -- History git log git help log git log --oneline --graph --decorate --color Lecture Command Listing -- Removing Files pwd git status mate debug.log ls git status git add . git status git commit -m "adding log file that really does not belong here" clear git status git rm debug.log ls git status git commit -m "removing log file" clear mate info.log ls git add info.log git commit -m "adding info log" git status clear ls rm info.log ls git status git add . git add -u clear git status git commit -m "Removing info.log" Command Listing -- Moving Files ls mkdir web ls git mv index.html web cd web/ ll pwd cd .. ls git status git commit -m "Moving index.html file to web folder" clear Command Listing -- Ignoring Files mate application.log ls git status mate .iitignore git status ls -a git add .gitignore clear git status git commit -m "adding ignore file...

Git Working Locally Commands

Git Working Locally Commands Lecture Command Listing - Working Locally, Part One pwd git status mate README.md git status git add README.md git status git commit -m "Adding some ipsum" clear git status mate README.md git status git commit -am "Adding more ipsum" git status Lecture Command Listing - Working Locally, Part Two pwd git status clear mate index.html git status git add index.html git status mate README.md git status clear git status git add README.md git status git commit -m "A few changes for the website" clear mate README.md mate index.html git status git add . git status git commit -m "A few more changes for website" clear mate README.md git status git add README.md git status git reset HEAD README.md clear git status mate README.md git checkout -- README.md mate README.md git status Command Reference Express Commit for Tracked files git commit -am "Awesome commit message" Use the  -a  parameter with the...