I wanted to revisit the basic use of Git because there have been several changes in the last six months to make it easier to use, as well as changes in the SAP Cloud Platform.
I'm glad the topic is getting some exposure -- thanks to Kiran for her recent blog on the topic, especially a view in the SAP Cloud Platform cockpit showing how to create a new version of an application from a specific commit. Still, there are a few additional things to show, including multi-developer scenario.
Want to watch?
Below I will spell out the steps, but here's a fresh 3-minute video that shows the complete steps for starting working with Git in a multi-developer scenario.
How to work with Git
Developer 1
Here's the workflow for the first developer (with tips along the way).
Create a Git repository. This can be in Github or in a Git system in your company. For our example, we create a Git repository in the SAP Cloud Platform.
Creating a Git repository in SAP Cloud Platform is now simpler. You no longer have to create an application to get a Git repository, nor from SAP Web IDE do you have to create a project and deploy it. In SAP Cloud Platform, just go to the cockpit and select Repositories→ Git Repositories, and create one by clicking New Repository. Click on your new repository and get the clone URL for later.
Create a project. In SAP Web IDE, create a project, for example, from a template.
Initialize a local repository. Make your project a local Git repository by right-clicking the project in the workspace, and selecting Git→ Initialize Local Repository.
Set remote repository. Here's where you connect your local repository in Step 3 to the remote repository you created in Step 1. Click on Set Remote, either in the notification you get after initializing, or in the Git menu.
Rebase. Get the latest commits.
If you don't rebase, you'll have trouble pushing later. A common problem I had was that on my first commit I could not push (the dreaded FAST FORWARD error), even though I knew my repository was empty. But in fact the repository has an automatic first commit, and you need to retrieve it. (When you create the Git repository in SAP Cloud Platform, you are asked if you want a first commit -- it's on by default.)
Stage, commit, and push.
I often forget to add a commit message and then wonder why the Commitbutton is disabled.
Developer 2
Now a second developer is interested in working on the project.
Clone the repository. Get the clone URL from the first developer, and go Clone → Git → Clone Repository. The clone dialog is much simpler, and now you only need a clone URL. You can also select whether your repository works with Gerrit for code checking. More on Gerrit in another blog.
Code. Make changes to the project as necessary.
Stage, commit, and push.
Developer 1
Back to the first developer, who wants to get the latest changes.
Fetch. Fetching brings back information about the remote repository -- like what branches there are and what commits you are missing -- but it does not update your project in the SAP Web IDE.
Rebase. Rebasing updates your project with all the changes in the remote repository made by other developers (and that you already brought back with the Fetch command).
That's it. In upcoming blogs, we'll go through what happens when there are conflicts, and how to use Gerrit for code review and collaboration.
There is no supported use case where a user from one account will get access to a repository in another account. The use case I described was with 2 developers in the same account. You could of course use Github, but you essentially have the same issue -- you need to create an account in Github.
In the past you use to have a dialog where you could enter your credentials, but in a trial scenario I wasn’t making sense as you would only use your GIT.
So the dialog is now simplified with just the remote source url only.
So to connect to a remote account GIT on trial, you will need to adjust the repository url and include the remote user id in it like this:
https://<remote scp user id>@git.hanatrial.ondemand.com/<remote scp user id>/<remote scp git repo name>
Then you should get prompted for the password for <remote scp user id>. Make sure you check “Remember password”.
OK, I thought you meant you had one user who had access to 2 SCP accounts. So in essence you have simply set up 2 trial accounts (with 2 different users) and do not grant permissions across accounts. Right?
When I pull remote repository to my local branch in SAP Web Ide, I've got this problem with GIT:
3:13:49 PM (git) Pull request failed No merge base could be determined. Reason=CONFLICTS_DURING_MERGE_BASE_CALCULATION. "More than 200 merge bases for:
a ac84124fd128aa579db65693b36be11b5d9a3575
b 1b9e27eb78bed7f9ec40517fee32dfb0a5504ef7 found:
count 2"
I've searched but found no solution, the only solution is mentioned here.
They suggest to update the git version to higher version, but it seems unable to do so in sap web IDE. The Web IDE also does not support git command line so there's no solution to get over this bug.
After getting the error, I've tried to Fetch then Rebase but I didn't work.
After sometimes, Git system has fixed the error (I'm not sure how) by merging all the changes into one commit. I've searched the Internet and the community mentioned that this is a bug from Git.
Hi, when I try to clone the Git repository to my workspace from HCP, all I get is gitignore file. WebIDE console gives error (CloneandOpen) Path parameter not found. I cannot find any solution or description of the similar problem anywhere, do you have any idea why cloning git is not working for me?
Hi, Daniel, I found the reason why it is like this - the GIT master branch link is empty, instead tree is visible and is located under the version tags. What could be done so I could get to the tree and clone it to webIDE?
I'm trying to understand your flow:
1. From the cockpit you go to Git Repository.
2. From the list of the git project you click on your project.
3. Then you copy the 'Repository URL'
4. From Web IDE you click on File > Git > Clone Repository
5. You paste the copied URL into URL filed and click on Clone.
6. And then what ? do you get an error message ? do you get your project tree ?
If it is possible please attach a screenshot and/or update the scenario.
Please specify what is expected and what is the actual result.
I also tried your approach but even after entering the password of userA while cloning the userA's repository in userB's webide, it is not working. I am sure that I am entering the correct password.
First, please create a separate question for your issue, and not as a comment in a blog.
Second, I see from your screenshot that you're using the old version of Web IDE. Please use Web IDE Full-Stack, and if you're still having this issue, either open a support ticket (if you have a paid license), or create a new question.
This was a while ago and I'm not with SAP Web IDE anymore, so I'm not so up to date.
I'm sure there has been a lot of changes with the SCP Git functionality, as well as the way in SAP Web IDE for using Git (e.g., can create Git repository from within SAP Web IDE without going to cockpit).
I'm not sure I understand the question: You mean can someone not logged into SCP access the Git repository? When I clone from a Git repository, I have to log into my SCP account.
This tutorial is based on the Neo environment, which seems likely to be superseded by Cloud Foundry. I don't see repositories in CF.
Hope that helps a little 🙂
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.