Using BitBucket repo in Github App (Mac OSX) - macos

I´m new to mac osx system and in windows i have set a repository from bitbucket in github app successfuly. Now in Mac OSX i can´t drag the url from the BitBucket page (and i pull the commits locally to bb). Is there a way to do this?? Sorry for my bad english!
Thanks for the future responses!

You can clone the repository locally and add it like they explain here.
Alternatively, you can clone it directly from GitHub for Mac like in here.

Related

Xcode cannot clone project from github

I just started using GitHub today. Why this is happening?
I used http request
First you need to connect your GitHub account to Xcode and then select a project to clone... If something goes wrong, you need to reinstall Xcode.

The local repository is out of date

I'm trying to commit my project to GitHub but this is happening. Can someone please explain to me how to go about it? Iv got the local and remote - why are they not merging/syncing?
After you work for your project someone pushed the remote so you are
not updated.
You should to pull from the remote, merge your code to
local and, Finally you can push without error.
I suggest using the SourceTree or Github Desktop if you are not so much familiar with the git commands, they are much user friendly.

How to Add Xcode project to Github repository from windows environment

After seeing title of my question you might think like this kind of question is already been asked before. However this is not duplicate, read below to know.
I am developing IOS application. Whenever I get time I work on that every time I use either library's PC or friend's MacBook to developing or making changes in my existing project and then I compress the project and upload it to my Google drive.
I would like to add my Xcode project to Github. I know how to do it from MacBook though. I am looking for way to push my Xcode project from windows environment. As I am poor fellow and can not afford MacBook at the moment.
or
If is there any way I can push my project to same repo on Github from different MacBook every time. As I mentioned before I am using public library to work on my IOS app it is not possible that I can be able to use same Apple PC every time.
Make in windows console -
cd /path/to/my/repo
git remote add origin https://github.com/UserExample/ExampleProject
git push -u origin --all
There is a variety of ways to use GIT within Windows. Github is just a GIT repository cloud service. You can fetch, push, pull command line, after installing GIT on your Windows machine and then CD changing directory to your repository (where the source code is) on your Windows hard drive.
Since you are new to GIT and Github, use the very user friendly Github tool:
Github Desktop
You will be able to use use the existing repository on your Windows hard drive, or if it gets confusing via the Github Desktop to "connect" an existing local repository to the Github repository (https:www.github/myrep). Then just backup your working project to a backup folder and clone the Github repo you are using.

Xcode 7 How to Configure a Git Network Repository

I am about to start developing an application in Xcode 7 and will be working on the code from different locations on different Macs. I want to configure a Git repository on my fileserver (Snow Leopard Server) where my code will reside, and will be regularly backed up from, so that I can 'check out' code to whichever Mac I am working on, work with it and 'check in' afterwards. Is this possible?
I am used to working in IntelliJ IDEA where I simply create a bare repository on my fileserver, create my new IntelliJ project on my local Mac and then 'push' my local code to my network repository when needed.
Many thanks.
Chris
You can have your own git server installed locally but its much better to use a service like bitbucket (private repo) or any other free git hosting service.
If you still decide to have it locally on your mac here are the instruction on ow to do it.
http://www.tomdalling.com/blog/software-processes/how-to-set-up-a-secure-git-server-at-home-osx/

How to share my project via GIT if I have git server in internet?

I know, that its easy to share my project with team in eclipse, but it creates local git server.
I created an account in a site like github and know I have git repository in internet (I have git url, login and password).
And I have my project in eclipse. How to share it with my friend if he also have git account in my server?
See http://wiki.eclipse.org/EGit/User_Guide#Github_Tutorial for an example of working with EGit and GitHub, and http://wiki.eclipse.org/EGit/User_Guide#Considerations_for_Git_Repositories_to_be_used_in_Eclipse for a discussion on creating local repositories for use with your workspace in general.
Firstly, if you host your project from github. You can simple release you project name to other users and they can find it and howto from GitHub.
Secondly, if you can copy command from you host (GITHUB like 'git clone XXXXXXXXXX'. That's the basic command to get local copy from Github.
Finally. Don't forget to push your update and pull other's back from Github.

Resources