Git And Github_research_paper.docx

  • Uploaded by: d
  • 0
  • 0
  • November 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Git And Github_research_paper.docx as PDF for free.

More details

  • Words: 1,587
  • Pages: 4
Git and GitHub Dipanjali P. Pashankar

Abstract: Git is a free & open source distributed version-control system for tracking changes in source code during software development. It is designed for coordinating work among programmers, but it can be used to track changes in any set of files. This is especially helpful for software developers because when you are working on a project you first build a basic version of it and then try to improve it by adding new features (or) just experiment with things. This whole process of experimenting with new features is incredibly error prone and you might want to revert back to your original code. GitHub is a web-based hosting service for version control using Git. It offers all of the distributed version control and source code management functionality of Git as well as adding its own features. Basically, it is a social networking site for developers. You can look at other people’s code, identify issues with their code and even propose changes. Git is a distributed revision control system which allows the user to track changes to any file that is text revert to any previous version easily, visualize changes between versions, and a variety of other eminently useful things (creating branches of a project, asynchronous collaboration, etc.).GitHub is an enormously popular web-service that allows the user to host Git repositories publicly (or privately for a price, though they offer free student accounts for 2 years). A complete research project hosted on GitHub is reproducible and transparent by default in a more comprehensive manner than a typical journal mandated replication archive. With a public Git repository the data, any manipulation code, Functionality of Git as well as adding its own features.

Are available at any time that a change was “committed” to a file tracked in said Git repository. Keeping data, data manipulation Code, model code, code for visualizations along with the manuscript in a Git repository on GitHub thus subsumes and extends the advantages of journal maintained replication archives. Hosting your work on GitHub, because of its popularity in and outside of academia, also increases the probability of your work being seen by people that aren’t actively involved in academic political science. Worries about being “scooped” may also be allayed by using a public revision control system, since there is then a public record of your work on the project (as previously noted, you can also keep repositories private). There are many reasons why I adore GitHub! For me, it stands for all the good things associated with open content – The beautiful mindset behind it where many people participate to create amazing things! GIT was designed for codeprojects, but also works very well for the scientific writing process. GitHub is a web-based hosting service for software development projects that uses the Git revision control system. It also has their standard GUI application available for download (Windows, Mac, GNU/ Linux) directly from the service's website. GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere. To clarify: GIT is the name of the versioning system, Github is a web site for storing GITrepositories and it comes with some features. It is mostly used for Computer code. It offers all of the distributed version control and source code management makes it easy to add one at the same time you for developers.

You can look at other people’s code; identify issues with their code and even propose changes. This also helps you in improving your code Some Basic Terminology included in GitHub are: - Repository, Branch, Fork, Clone, Commit, Master, etc. GitHub is a webbased hosting service for version control using Git. It is mostly used for computer code. It offers all of the distributed version control and source code management (SCM) functionality of Git as well as adding its own features. It provides access control and several collaboration features such as bug tracking, feature requests, task management, and wikis for every project. GitHub offers plans for enterprise, team, pro and free accounts which are commonly used to host open-source software projects. As of January 2019, GitHub offers unlimited private repositories to all plans, including free accounts. The Hello World project is a time-honored tradition in computer programming. Let’s get started with GitHub! You’ll learn how to: 1. Create and use a repository 2. Start and manage a new branch 3. Make changes to a file and push them to GitHub as commits 4. Open and merge a pull request you need a GitHub.com account and Internet access. You don’t need to know how to code, use the command line, or install Git (the version control software GitHub is built on). Step 1. Create a Repository A repository is usually used to organize a single project. Repositories can contain folders and files, images, videos, spreadsheets, and data sets – anything your project needs. We recommend including a README, or a file with information about your project. GitHub create your new repository. It also offers other common options such as a license file.

To create a new repository 1. Select New repository. 2. Name your repository hello-world. 3. Write a short description. 4. Select Initialize this repository with a README. 5. Click Create repository.

Step 2. Create a Branch Branching is the way to work on different versions of a repository at one time. By default your repository has one branch named master which is considered to be the definitive branch. We use branches to experiment and make edits before committing them to master. When you create a branch off the master branch, you’re making a copy, or snapshot, of master as it was at that point in time. If someone else made changes to the master branch while you were working on your branch, you could pull in those updates. This diagram shows: 1. The master branch 2. A new branch called feature The journey that feature takes before it’s merged into master

To create a new branch Go to your new repository hello-world. Click the drop down at the top of the file list that says branch: master. Type a branch name, readme-edits, into the new branch text box. Select the blue Create branch box or hit “Enter” on your keyboard.

Step 3. Make and commit changes Now, the code view for your readme-edits branch, which is a copy of master. On GitHub, saved changes are called commits. Each commit has an associated commit message, which is a description explaining why a particular change was made. Commit messages capture the history of your changes, so other contributors can understand what you’ve done and why. Make and commit changes 1. Click the README.md file. 2. Click the pencil icon in the upper right corner of the file view to edit. 3. In the editor, write a bit about yourself. 4. Write a commit message that describes your changes. 5. Click Commit changes button.

Now you have two branches, master and These changes will be made to just the readme-edits. They look exactly the same, but README file on your readme-edits branch, not for long! Next we’ll add our changes to the so now this branch contains content that’s new branch. different from master.

Step 4. Open a Pull Request Now that you have changes in a branch off of master, you can open a pull request. Pull Requests are the heart of collaboration on GitHub. When you open a pull request, you’re proposing your changes and requesting that someone review and pull in your contribution and merge them into their branch. Pull requests show differences, of the content from both branches. The changes, additions, and subtractions are shown in green and red. Open a Pull Request for changes to the README 1. Click the Pull Request tab, then from the Pull Request page; click the green New pull request button. 2. In the Example Comparisons box, select the branch you made, readme-edits, to compare with master (the original). 3. Look over your changes in the diffs on the Compare page; make sure they’re what you want to submit. 4. When you’re satisfied that these are the changes you want to submit, click the big green Create Pull Request button. 5. Give your pull request a title and write a brief description of your changes. When you’re done with your message, click Create pull request! Tip: You can use emoji and drag and drop images and gifs onto comments and Pull Requests.

Conclusion:Git and GitHub provide fast and convenient ways to track projects, whether the project is by one individual or a team of software developers. Although GitHub has many complex features available, it’s easily accessible for individual and small projects that need some kind of tracking mechanism. In addition to version control, GitHub provides users with a social platform for project management GitHub free plan allows you to host an unlimited number of public repositories with the ability to clone, fork and contribute to them. References Research Paper:Zachary M. Jones Published in The Political Methodologist, Fall 2013. ”Git/GitHub, Transparency, and Legitimacy in Quantitative Research.” Website:Step 5. Merge your Pull Request In this final step, it’s time to bring your https://guides.github.com/activities/hello-world changes together – merging your readmehttps://github.com/dipanjalip809/hello-world edits branch into the master branch. Click the green Merge pull request button http://paulklemm.com/blog/2014-07-16-useto merge the changes into master. github-for-scientific-writing Click Confirm merge. Go ahead and delete the branch, since its changes have been incorporated, with https://help.github.com/en/categories/githubpages-basics the Delete branch button in the purple box.

Related Documents

Git
December 2019 47
Git
November 2019 36
Git-github.pptx
December 2019 37
Derma Git
November 2019 32

More Documents from "api-3843372"