bitbucket

ZF2 private repository for project

☆樱花仙子☆ 提交于 2019-12-13 07:39:08
问题 I started ZendSkeletonApplication via Composer. I will need for my project PRIVATE repository (Git). How to do it? Skeleton have now .git files so how I can work with my project for example on BitBucket? Regards 回答1: The best way to create a ZF2 skeleton project from scratch is to use ZFTool (http://framework.zend.com/manual/2.1/en/modules/zendtool.introduction.html). Install it to /usr/local/bin (with executable permissions) and then you can do this: $ zftool.phar create project project_name

Unable to enable Bitbucket pipelines

空扰寡人 提交于 2019-12-13 07:37:59
问题 I'm trying to enable Bitbucket pipelines in a private repository. I go to "Pipelines" tag in the left menu, and then click on "Enable Pipelines" button. Then, a "wait for it" spin icon appears in the middle of the screen.... and nothing more happen. I tried uploading a bitbucket-pipelines.yml file with some apparently correct content, but nothing changed on the Pipelines page. I tried with Chrome and Firefox. Is it a common issue? 回答1: Have not seen that. Even free accounts should have

How to push to bitbucket using intellij

安稳与你 提交于 2019-12-13 07:30:07
问题 I have created a project in bitbucket and trying to push code using intellij git. When I created the project bitbucket gave me commands to run within git. Here are the commands I ran and the error I got: git remote add origin ssh://git@bitbucket.org/[username]/[repo] git push -u origin master This looks strange because how is this command suppose to authenticate me? Now here is error I got. Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have

Create branch from develop android studio

大兔子大兔子 提交于 2019-12-13 06:08:55
问题 How to create local branch in Android Studio/Intellij idea from remote - Develop, and then merge to develop? Then I creating local branch, see in first image link. It's creating from master and can be merged remote develop or master branches. Android studio local branch creating from master Commits tree, Bitbucket 回答1: To check out a new local branch from a remote branch Invoke the Branches menu as described in Accessing Git Branches Popup Menu. Select a branch in the pop-up list that shows

Deleted files in git repo still present in bitbucket account

和自甴很熟 提交于 2019-12-13 05:38:28
问题 I had a git repo in Bitbucket. I had cloned that repo inmy local machine using git clone command. All the files were synced in my local machine. I did some changes in that repo like deleted some files, renamed some file using git rm -rm /directory git rm /file name git mv filename changedfilename and push the changes using git push -u origin master After this all the newly added file and renamed files were displayed in the Bitbucket account but old one were also present which I had deleted

Git - branch or tag?

半腔热情 提交于 2019-12-13 05:33:30
问题 I have a API that was developed using python 2.7. I have some developers that are already using it. I would like to migrate this API to python 3.4. I will not give support for the python 2.7 API anymore. My code is stored in bit bucket. What is the best strategy? Just make a simple branch, e.g., "python3.4"? Make a tag on the master branch (python 2.7) and start a new branch (python 3.4)? 回答1: Yes, branching is correct. It is possible that you will want to fix a bug in the Python 2 branch, so

How to get Tortoise HG to detect changes in files based on directory again

*爱你&永不变心* 提交于 2019-12-13 04:31:53
问题 The simplest way I can describe this is that I have a project in Windows 7 under version control with tortoise HG version 2.8.1 using Mercurial-2.6.2, I am using bitbucket.org as my remote repository. When I go to click HG commit on a folder with a red exclamation point on it (meaning files that need to be committed). It tells me No files found for this operation But when I click on files in that directory that have the red exclamation point, It brings up the normal commit menu expecting me

Remove Folder from bitbucket history

旧城冷巷雨未停 提交于 2019-12-13 00:23:41
问题 I am new to git repository. I have a 2gb limit in bitbucket and bymistake I added one images folder of 1.5 gb and pushed the code. Now the bitbucket size is 1.8gb. To remove the folder from history I followed these steps. Remove folder and its contents from git/GitHub's history git filter-branch --tree-filter 'rm -rf import/images' --prune-empty HEAD git for-each-ref --format="%(refname)" refs/original/ | xargs -n 1 git update-ref -d echo import/images/ >> .gitignore git add .gitignore git

How can I set a username alias in github commits?

限于喜欢 提交于 2019-12-12 19:20:59
问题 I just finished a semester at college and decided to import all of my projects from bitbucket (required for my classes) to github (where all of my other projects are). I successfully imported them. Unfortunately, at the time when I was working on these projects, I was switching between three different computers. As a result, the commit history has lots of different names for commits that I did myself. I'd like to set an "alias" like you can in bitbucket, saying "these three people are also me

Team Foundation Server 2015 vs. Bitbucket Server (Stash)

扶醉桌前 提交于 2019-12-12 18:29:58
问题 I am trying to compare two solutions. TFS Server 2015 and Bitbucket Server. I assume, that I will host GIT repositories and for project management I have other tools. What is the advantage in using TFS comparing to Atlassian solutions? Is there a place where I can find list of functionalties, implemented or scheduled in both tools development? And is this post actual: http://blogs.msdn.com/b/visualstudioalm/archive/2015/08/27/git-experience-futures.aspx?CommentPosted=true&PageIndex=3#comments