Git is a distributed version control system focused on speed, and real-world usability on large projects.
1
vote
3answers
16 views
How to handle enabling new modules with Drush
At work we are moving to getting our new sites set up in git and doing local development. So far I've created a drush make file along with an installation profile, and I have this scripted via puppet ...
2
votes
1answer
25 views
Usernames in git commit messages on Drupal.org
I recently changed my username on drupal.org, and as a result is now different from my git username.
When you attribute a patch someone else using the commit author, you use the anonymous email ...
-4
votes
0answers
38 views
How do I use Git? [closed]
Will anyone please let me know how i use Git? Apparently there seem to be an update for Field Slideshow module, but only in Git. how do I apply it on my website? I have gone crazy looking the web, but ...
1
vote
1answer
46 views
Understanding database structure for auto-migration
I am trying to come up with a good way to get this handed down Drupal project to work as smooth as possible. Ideally, my goal is to do changes local, and when that looks okay, I should be able to git ...
7
votes
2answers
108 views
How do I get a block and its content commited to a Git repo?
Let's say I have created a block with some Full HTML (Facebook Feed) text inside. How can I commit the block and its text content into my Git repository, so my co-workers can pull it?
4
votes
1answer
38 views
Add tags to my sandbox module
Currently i am working on a sandbox module, which is text_or_user_reference field.
Now to release the module i have to create a branch of the module i.e 7.x-1.0
Since beginning of the module ...
-1
votes
2answers
55 views
clone of drupal project failing: operation timed out
I am trying to clone the drupal project locally but getting this error
k10593:htdocs welcha$ git clone git://drupalcode.org/project/drupal.git fooproject
Cloning into 'fooproject'...
fatal: unable ...
1
vote
0answers
37 views
D7 configuration module gitignore sites/default/files/config
I'm checking out the new configuration management module for Drupal 7. It's effectively a back-port of the new configuration management that's in D8, and looks like it's going to be a great ...
5
votes
1answer
76 views
Do I need all drupal core history in my own repository
I decided to update core via git, mostly by following the approach explained here.
I did this (in my local repo, dev branch):
git remote add core git://drupalcode.org/project/drupal.git
git fetch ...
3
votes
1answer
121 views
git post-receive hook to trigger drush rsync without prompt or with predefined answer
I have set up post-receive hook on my staging server, so whenever I push from dev server a master branch, it updates staging webroot and triggers drush rsync to update live site.
#!/bin/bash
...
0
votes
1answer
97 views
Git workflow from dev to live when central repo is in local network [closed]
I use @dev - @stage - @live workflow, managed with drush rsync and drush aliases to update code, syncing db down from @live to @dev / @stage to have recent state.
Recently, I am trying to implement ...
0
votes
2answers
60 views
Drush features commands + git
I have a doubt about the functionality of Drush Features commands when it works with git:
Before I do a git pull, can I do drush fu example? Will this command overwrite the changes of the feature ...
1
vote
1answer
35 views
Commit doesn't show up in profile on Drupal site
I submitted my first, (and very small patch) here, by following the instructions here.
It looks like the patch worked, but when I look at the Commits tab of my profile, I don't see any entries.
When ...
7
votes
1answer
200 views
How do I do git clone with drush to download the HEAD version of a module?
Is there any way to clone or pull the HEAD version of a module in drupal.org git repository?
For example, if I'm on Drupal 7, and the last branch of Views is 3, I would like to do:
drush git-clone ...
0
votes
2answers
62 views
Could anyone suggest a Drupal database versionning tool? [duplicate]
Possible Duplicate:
How do I manage collaborative development on a Drupal site?
Is there any Drupal database version like GIT for versionning files ? with drush or any thing else ?
I've ...