Kayıtlar

git commit etiketine sahip yayınlar gösteriliyor

Sample Git Log

Gunay-Local:website gunaygultekin$ git log commit 157e29ed59534296f04695a0b253f7ffe8b60148 ( HEAD -> master ) Author: Günay Gültekin <gunaygultekin@gmail.com> Date:   Sun Mar 11 14:17:35 2018 +0300     Adding a message in Readme file commit 49814b4bcfd6a54db8ec44d47e55550ff6cc02ce Author: Günay Gültekin <gunaygultekin@gmail.com> Date:   Sun Mar 11 14:13:25 2018 +0300     Adding web project generated by initializr commit 06b3bb92616a09d7365c13d3677aa8a477a3e68e Author: Günay Gültekin <gunaygultekin@gmail.com> Date:   Sun Mar 11 13:58:13 2018 +0300     Adding more ipsum commit 01eea675e9c896df5e74df03a68099897d7981c7 Author: Günay Gültekin <gunaygultekin@gmail.com> Date:   Sun Mar 11 13:46:19 2018 +0300     Inline commit message commit 54e075f5e62968d578e48de6d42a2ad391df58d3 Author: Günay Gültekin <gunaygultekin@gmail.com> Date:   S...

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...

Git First Commit Commands

Git First Commit Commands Lecture Command Listing pwd ls mate README.md ls git status git add README.md git status git commit -m "Initial commit" clear git status Command Reference List ls Lists files and folders in current directory. Without parameters, will list non-hidden folders and files. Git Status git status Shows which files have been modified in the working directory vs Git's staging area. Git Add git add file-name Adds the new or newly modified  file-name  to Git's staging area (index). Git Commit git commit -m " A really good commit message " Commits all files currently in Git's staging area. The -m parameter allows for a commit message directly from the command line. Clear! clear Clears all previous commands from the terminal screen -- just a bit of clean up. All command line demos are preformed on the MacOS. Creating and editing files is done with Atom (free).