https://github.com/brytebee/alxprodev-advanced_git
Educational: In this project, I practice basic git flow using the proposed technique by Vincent Driessen
https://github.com/brytebee/alxprodev-advanced_git
Last synced: 5 months ago
JSON representation
Educational: In this project, I practice basic git flow using the proposed technique by Vincent Driessen
- Host: GitHub
- URL: https://github.com/brytebee/alxprodev-advanced_git
- Owner: brytebee
- Created: 2025-08-08T19:48:35.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-08-11T11:49:40.000Z (11 months ago)
- Last Synced: 2025-09-02T01:38:19.782Z (10 months ago)
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ALXprodev-advanced_git
Educational: In this project, I practice basic git flow using the proposed technique by Vincent Driessen
## NOTE
The installation possesses certain challenges because of the following issues:
- Git protocol issue: The git:// protocol is often blocked by firewalls/networks
- Missing make command: You're on Windows (Git Bash) which doesn't have make by default
## INSTALLATION FIX
```bash
# Configure git to use HTTPS instead of git://
git config --global url."https://github.com/".insteadOf git://github.com/
# Now try cloning again
cd ~
rm -rf gitflow # Remove the incomplete clone
git clone --recursive https://github.com/nvie/gitflow.git
```
You might face an issue with the above bash command especially if you had attempted to install it earlier. Solve this by removing the initial installation that might be broken or incomplete with the command below:
```bash
sudo rm -r ~/gitflow
```