1Jan

Github Repository For Mac

36 rows  Apr 26, 2020  ASP.NET Core is a cross-platform.NET framework for building modern cloud.

Some basic Git instructions for Github for Mac and the command line
git-version-control
# Using Git version control for code projects
## Creating a new code repo from a local working copy
### with the [Github for Mac app](http://mac.github.com/)
1. From the repositories view in the app, drag the project folder to the bottom of the left sidebar.
2. Hit 'Yes' when it asks if you want to create a local git repository
3. Go to 'Changes' view (⌘2)
4. Select the files that you want to commit their current state to the repository. You can view the changes of the file by clicking on the double up arrow on the file name bar.
5. Type a commit summary, usually a description of what you've just added or changed.
6. Click 'Commit'. This commits the current state of the code to your local repository. Do this every time to do something significant like fix a bug or develop a feature. Commit early and often. Each state of code is available to you at any time via the History view (⌘1).
### with the command line
1. Open Terminal.app
2. 'cd' to directory
> cd path/to/directory
3. Initiate a git repository
> git init .
4. Add existing files
> git add .
5. Commit all files (-a) and add a message (-m)
> git commit -a -m 'commit message goes here'
## Cloning (checking out) someone else's repository
### with the [Github for Mac app](http://mac.github.com/)
* Visit the repo on Github.com and click the 'clone to Mac' button, or..
* Select the repo in the Repositories list within the app, under the cremalab account.
### with the command line
1. 'cd' to desired directory
2. clone the repo with the clone url
> git clone git@github.com:albatrocity/gratuitator.git
## Syncing repository branches with a remote repository
### with the [Github for Mac app](http://mac.github.com/)
1. Make sure you have committed the current state of your code
2. Drill into your repo in the app and click Sync Branch in the upper right corner. **This pulls down the latest code from the remote repository, merges your code with it, and pushes your changes to the remote repository.**
If you only want to get the latest code from the remote repo, select Repository > Pull (⇧⌘P) from the menu bar. This merges the remote code with your local code but does not push up your changes.
If you only want to push up your current state to the remote reop, select Repository > Push (⌘P). This will only work if you already have the most up to date code from the repo.
### with the command line
1. Make sure you have committed your current state.
2. Get the most up to date code from the remote repo
> git pull origin master
3. Push your local code to the remote repo
> git push origin master

commented Mar 2, 2020

Wonderful directions

Hp alm excel add-in not showing

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

GitHub Desktop for Mac is a seamless way to contribute to projects on GitHub and GitHub Enterprise. GitHub Desktop allows developers to synchronize branches, clone repositories, and more. Pull requests, merge button, fork queue, issues, pages, wiki: all awesome features that. But those things are only great after you've pushed your code to the tool.Features and HighlightsStart a projectYou’ll find all the projects you’re working on listed in the sidebar.

If you’re starting a new project, use the repository drop down menu to create a new repository or clone an existing one directly from GitHub.com.Branch offBranches are essential to proposing changes and reviewing code on the app—and they’re always available in the top left corner of the repository view. Just select the current branch to switch branches or create a new one.Craft the perfect commitView a diff of your uncommitted changes, and form the perfect commit by selecting the files—or even the specific lines—that make up a change. Enter the summary and description, then commit.Synchronize branchesThe sync button pushes your changes to the app and pulls down other's changes in one operation. It notifies you to know when you have changes you haven't pushed or there are new changes on the tool you haven't pulled down.Clone repositories in one clickWhen you add repositories to Git Hub Desktop for macOS, it automatically matches them up with any organizations you belong to.

Want to pull down a repository from GitHub.com? Check out the button on the website.Powerfully simple branchingBranching is one of Git's best features. 'We've made it easy to try out remote branches, create new local branches and publish branches to share with others.' Note: Requires 64-bit processor.Also Available.