"GIT AND GITHUB"?

"GIT AND GITHUB"

GIT

Git is a open source tool to managing source code on remote Repository and keep track of your source code history.

Most of the company are making a projects use Git and it has easy to understanding the source code of the every projects WHY because git is a version control system that lets you manage.

It is a local VCS software that enables developers to save snapshots of their projects over time.

Git is a version control system that lets you manage and keep track of your source code history. GitHub is a cloud-based hosting service that lets you manage Git repositories. If you have open-source projects that use Git, then GitHub is designed to help you better manage them.?

What is Version Control System (VCS)?

Version Control Systems are the software tools for tracking/managing all the changes made to the source code during the project development. It keeps a record of every single change made to the code. It also allows us to turn back to the previous version of the code if any mistake is made in the current version. Without a VCS in place, it would not be possible to monitor the development of the project.

? How GitHub Works

Of the many features offered by GitHub, three of the most consequential include forking, pull requests, and merging. Forking a project creates a copy that allows you to experiment freely without affecting the original project.

When you're happy with the changes you've made, you can submit a pull request. The pull request is sent to the project owner, who can review the changes you've made and ask any follow-up questions. If the project owner likes the changes, they'll merge your pull request, which applies the changes from your forked project to the original code.

How Git Actually Work

Git finds that commit object by its hash, then it gets the tree hash from the commit????object. Git then down the tree object, un compressing file objects as it goes. Your working directory now represents the state of that branch as it is stored in the repository.


“The difference between Git and GitHub”

Git is a widely used version control system that lets you manage and keep?track of your code. GitHub is a cloud-based hosting service that lets you manage your Git repositories. With GitHub, you can back up your personal files, share your code, and collaborate with others.

GIT Push and Pull

Learn how to perform Git PUSH and PULL requests through GitHub Desktop and the Command-Line.

You'll be using GitHub for this tutorial as it is widely used, however, Bitbucket, Gitlab, etc. are also popular, but Developers, Data Scientists, and Data Analysts mostly use the GitHub to PUSH and do PULL Request.

  • GIT PUSH
  • Using Command line to PUSH to GitHub.
  • Using GitHub Desktop to PUSH to your local content to GitHub.
  • PULL Request
  • PULL Request through Command Line.
  • PULL Request through GitHub Desktop.

GIT PULL is one of many commands that claim the responsibility of 'syncing' remote content. The git remote command is used to specify what remote endpoints the syncing commands will operate on. The git push command is used?to upload content to?a remote repository.

?GIT PUSH command is used to upload local repository content to a remote repository. Pushing is?how you transfer commits from your local repository to a remote repo.???????????????????????????????????????????????????????????????????????????????????????????

MY??FIRST??RESPOTORY?INTERFACE
https://github.com/gopal1860

?


要查看或添加评论,请登录

社区洞察

其他会员也浏览了