Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • commiting a first file using git

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 530
    Comment on it

    As we have initialize here our first project we are now ready to make our first commit.

    Check the status

    1. naveen@naveen:/var/www/html/RND/symfony_sites/symfony_todoapp$ git status

    Git will show the message

    1. On branch master
    2.  
    3. Initial commit
    4.  
    5. nothing to commit (create/copy files and use "git add" to track)

    So,Now I goona create a new file and save it in project directory, I have used gedit to create a file, you can use any text editor of your choice.

    I have created a txt file name it `my_first_file` and saved it under `/var/www/html/RND/symfony_sites/symfony_todoapp/` now my file locaiton is `/var/www/html/RND/symfony_sites/symfony_todoapp/my_first_file`

    On Terminal: Now tell Git to add all changes that have been mabde to this entire project

    1. naveen@naveen:/var/www/html/RND/symfony_sites/symfony_todoapp$ git add .

    dot indicate this directory

    1. naveen@naveen:/var/www/html/RND/symfony_sites/symfony_todoapp$ git status

    Now Git will display this message

    1. On branch master
    2.  
    3. Initial commit
    4.  
    5. Changes to be committed:
    6. (use "git rm --cached ..." to unstage)
    7.  
    8. new file: my_first_file
    9.  

    Git now found that the file has been added but still this file is not commited

    Now I am going to commit it tell Git to put it in permanent memory, to put it in the repository. with a message -m so that I can know in future what changes I have made at this point. it is always a good idea to put something more specific in message.

    1. naveen@naveen:/var/www/html/RND/symfony_sites/symfony_todoapp$ git commit -m "my initial commit"

    Now Git will show you a message

    1. [master (root-commit) a67edfa] my initial commit
    2. Committer: Naveen
    3. Your name and email address were configured automatically based
    4. on your username and hostname. Please check that they are accurate.
    5. You can suppress this message by setting them explicitly:
    6.  
    7. git config --global user.name "Your Name"
    8. git config --global user.email you@example.com
    9.  
    10. After doing this, you may fix the identity used for this commit with:
    11.  
    12. git commit --amend --reset-author
    13.  
    14. 1 file changed, 1 insertion(+)
    15. create mode 100644 my_first_file
    16.  

    we will be learning more on how to confgure global user.name and global user.email and many other global setting of config file later

    Below is the basic flow of git

    • make changes
    • add the changes
    • commit the changes

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: