Coder Social home page Coder Social logo

k_git_test's Introduction

Git Commands for Version Control

Creating a repository online for the first time
$ git init  #initialize
$ git add README.md.  # adds the file to staging area
$ git commit # Creates a version on the local machine
$ git push -u origin main # Pushes the code to the code reporsitory on github server

On mac this will take you to the default editor(Vi) to escape that you need to do the following :

  • Press Esc
  • Enter :wq

But you can also use the nano editor for editing text files. The syntax will be as follows :

$ nano <your file>

You can then write the changes to file and save it using the follwoing commands on mac

Control + O  # to write the changes to the file and save
Control + X  # exit the editor
$ git commit -m "First Commit"  # commits everything in staging to be ready to be pushed to Githib
$ git remote add origin https://github.com/karthikgopalapuram/K_Git_Test.git
$ git branch -M main  #recnelty changed from github for ranming the master to main 
$ git push -u origin master
# put in your **username** and **password**
When you want to add on to repository online with changes
$ git add .
$ git add -u # when you deleted a local file you want to remove it from your repo
$ git commit -m "What has changed"
$ git branch -M main  #recnelty changed from github for ranming the master to main 
$ git push
# put in your **username** and **password**
  • . means add all the files included in the folder and subfolders
No more username and password input for every push
$ git remote set-url origin [email protected]:karthikgopalapuram/K_Git_Test.git

k_git_test's People

Contributors

thikku avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.