Git Product home page Git Product 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

a-path-finding-visualization icon a-path-finding-visualization

A python visualization of the A* path finding algorithm. It allows you to pick your start and end location and view the process of finding the shortest path.

abigsurvey icon abigsurvey

A collection of 300+ survey papers on Natural Language Processing (NLP) and Machine Learning (ML)

account-storage icon account-storage

A basic GUI that allows you to store your emails, password and account information.

ai4animation icon ai4animation

Bringing Characters to Life with Computer Brains in Unity

ajax_image_upload icon ajax_image_upload

A simple tutorial to explain how to implement ajax image uploading using jquery and php with a beautiful progress bar from bootstrap

algorithms icon algorithms

Minimal examples of data structures and algorithms in Python

aluraflix icon aluraflix

βš›οΈ Projeto feito durante a ImersΓ£o React da Alura

amazing-python-scripts icon amazing-python-scripts

πŸš€ Curated collection of Amazing Python scripts from Basics to Advance with automation task scripts.

analysis-flow icon analysis-flow

The meta-concepts of data analysis, reproducible workflows and projects for research and industry

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.