Skip to content

Instantly share code, notes, and snippets.

@pauloperez
pauloperez / merge_git_repo_as_subdir
Last active March 23, 2023 16:13 — forked from smdabdoub/merge_git_repo_as_subdir
Merge one git repository into another repository as a sub-directory
git clone repo_main
git clone repo_sub
cd repo_main
git remote add repo_sub ../repo_sub
git fetch repo_sub
git checkout -b repo_sub repo_sub/master
mkdir dir_repo_sub
#!/bin/bash
#title :wildfly-install.sh
#description :The script to install Wildfly 8.x
#more :http://sukharevd.net/wildfly-8-installation.html
#author :Dmitriy Sukharev
#editor :Paulo Perez
#date :20150113
#usage :/bin/bash wildfly-install.sh
WILDFLY_VERSION=8.2.1.Final