GithubHelp home page GithubHelp logo
  • ๐Ÿ‘‹ Hi, Iโ€™m Suvrajeet
  • ๐Ÿ‘€ Iโ€™m interested in Blockchain
  • ๐ŸŒฑ Iโ€™m currently learning Blockchain
  • ๐Ÿ’ž๏ธ Iโ€™m looking to collaborate on Blockchain Projects
  • ๐Ÿ“ซ Reach me @twitter - suvrajeetb

visitors


Git Essentials


  • Command Line Instructions

  • Gitpod can also be used as an alternate way instead of using local machine to work on files and hence finally upload them to a VCS service provider.
  • Step A may not be required in this case
  • Commands to upload files from local repository to remote repository from VCS services provides like ' Github, Gitlab, etc ' : -


A. Git Global Setup


git config --global user.name "github/gitlab-username"

git config --global user.email "github/gitlab-registered-email-address"


B.1 Create a new repository


git clone https://www.github.com/username/repository-name.git **_OR_** https://www.gitlab.com/username/repo-name.git

cd repository-name

touch new-file-name

git add . **_OR_** git add file-name

git commit -m "commit-message"

git status

  • To check the status of your files

git push -u origin master

  • "-u origin master" is optional & is not required at most of the time .

B.2. Create a new repository on the command line


git init

git remote add origin https://github.com/username/repo-name.git

echo "# echo-text" >> README.md

git add README.md

git commit -m "commit message"

git branch -M trunk

git push -u origin trunk


B.3. Push a Local repo WHILE local repo != existing remote repo


git init

git remote add origin https://github.com/username/repo-name.git

git add .

git commit -m "commit-message"

git branch -M trunk

git pull https://github.com/username/repo-name.git --allow-unrelated-histories

git push -u origin trunk


B.4. Push an existing repository from the command line


git init

git remote add origin https://github.com/username/repo-name.git

git branch -M trunk

git push -u origin trunk

Suvrajeet Banerjee's Projects

photosaic icon photosaic

Create beautiful mosaics from images and photos

php_ajax_search icon php_ajax_search

Example code used in implementing php web search using jquery ajax functions

pifuhd icon pifuhd

High-Resolution 3D Human Digitization from A Single Image.

plotly icon plotly

Data Visualization using Plots or various types of graphs

poker icon poker

Fully functional Pokerbot that works on PartyPoker and PokerStars. Binaries can be downloaded with this link:

poker-3 icon poker-3

A poker hand equity calculator, PokerStars and Full Tilt hand parser and history browser, and table HUD for Hold'em, Omaha, Draw, Stud and Badugi, written using Java 1.7 and Swing

pokerserver icon pokerserver

A Java server for running a Texas Holdem poker home game.

pokerth icon pokerth

PokerTH is a poker game written in C++/Qt.

postman-app-support icon postman-app-support

Postman helps you be more efficient while working with APIs. Using Postman, you can construct complex HTTP requests quickly, organize them in collections and share them with your co-workers.

postwoman icon postwoman

๐Ÿ‘ฝ A free, fast and beautiful API request builder (web alternative to Postman) https://postwoman.io

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.