forked from DOCGroup/ACE_TAO
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request DOCGroup#2133 from nickwilliams-zaxiom/add_gitignores
Add missing and update .gitignore files to prevent untracked files Git status
- Loading branch information
Showing
141 changed files
with
763 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ | |
|
||
.depend.* | ||
GNUmakefile* | ||
local.mwc | ||
*.ior | ||
.obj/ | ||
*.iobj | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#!/usr/bin/env bash | ||
|
||
cmd="$1" | ||
if [[ "$cmd" == "help" ]] || [[ "$cmd" != "run" && "$cmd" != "dry-run" ]] | ||
then | ||
if [[ "$cmd" != "help" ]] | ||
then | ||
echo "Error: Unrecognized command '$0 $1'" | ||
echo "" | ||
fi | ||
|
||
echo "Usage:" | ||
echo " update_gitignore.sh run" | ||
echo " update_gitignore.sh dry-run" | ||
echo "" | ||
echo "This command finds all untracked and un-git-add-ed files in the repository and adds each file name to " | ||
echo "a '.gitignore' file in the same directory. If a '.gitignore' file does not exist, one will be created. " | ||
echo "Otherwise, the existing '.gitignore' file will be appended to. The 'dry-run' command enables you to " | ||
echo "see a list of all detected file names that will be added to '.gitignore' files without making any " | ||
echo "changes." | ||
echo "" | ||
echo "If the 'run' command does its job properly, running 'dry-run' immediately after should display no " | ||
echo "planned actions." | ||
|
||
if [[ "$cmd" == "help" ]] | ||
then | ||
exit 0 | ||
fi | ||
|
||
exit 1 | ||
fi | ||
|
||
export IFS=$'\n'; | ||
|
||
for line in $(git status --short --untracked-files) | ||
do | ||
if [[ $line == '??'* ]] | ||
then | ||
file="${line:3}" | ||
d="$(dirname "${file}")" | ||
f="$(basename "${file}")" | ||
|
||
if [[ "$cmd" == "run" ]] | ||
then | ||
echo "Ignoring ${f} in ${d}/.gitignore" | ||
echo "${f}" >> "${d}/.gitignore" | ||
else | ||
echo "Will ignore ${f} in ${d}/.gitignore" | ||
fi | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ftp_simple_wget | ||
http_simple_wget |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
/SendRecv_Test | ||
client | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mt_get |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
/TimeServer | ||
TimeModuleC.cpp | ||
TimeModuleC.h | ||
TimeModuleC.inl | ||
TimeModuleS.cpp | ||
TimeModuleS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
/client | ||
/server | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
/Manager | ||
/server | ||
testC.cpp | ||
testC.h | ||
testC.inl | ||
testS.cpp | ||
testS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
/client | ||
/server | ||
testC.cpp | ||
testC.h | ||
testC.inl | ||
testS.cpp | ||
testS.h | ||
testsC.cpp | ||
testsC.h | ||
testsC.inl | ||
testsS.cpp | ||
testsS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,8 @@ | |
/client2 | ||
/server | ||
/server2 | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
/client | ||
/server | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
/client | ||
/server | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
/uipmc_test | ||
HelloC.cpp | ||
HelloC.h | ||
HelloC.inl | ||
HelloS.cpp | ||
HelloS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
/client | ||
/server | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
/client | ||
/server | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h | ||
client | ||
nsmain | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
HelloC.cpp | ||
HelloC.h | ||
HelloC.inl | ||
HelloS.cpp | ||
HelloS.h | ||
client | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h | ||
client | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h | ||
client | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
MessengerC.cpp | ||
MessengerC.h | ||
MessengerC.inl | ||
MessengerClient | ||
MessengerConsumer | ||
MessengerS.cpp | ||
MessengerS.h | ||
MessengerServer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h | ||
client | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h | ||
client | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h | ||
client | ||
nsmain | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
bug4080_client | ||
bug4080_server | ||
testC.cpp | ||
testC.h | ||
testC.inl | ||
testS.cpp | ||
testS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
COIOP_Naming_Test | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Disconnect | ||
MT_Disconnect | ||
Pull_Push_Event | ||
Push_Event | ||
Random | ||
Shutdown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
/ECM_Consumer | ||
/ECM_Supplier | ||
dataC.cpp | ||
dataC.h | ||
dataC.inl | ||
dataS.cpp | ||
dataS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Atomic_Reconnect | ||
BCast | ||
Bitmask | ||
Complex | ||
Control | ||
Disconnect | ||
Gateway | ||
MT_Disconnect | ||
Negation | ||
Observer | ||
Random | ||
Reconnect | ||
Shutdown | ||
Timeout | ||
Wildcard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
client | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
consumer | ||
gateway-ec | ||
supplier |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
consumer | ||
gateway-ec | ||
supplier |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
application | ||
gateway-ec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Connect | ||
Inversion | ||
Latency | ||
Latency_Server | ||
Throughput |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
/receiver | ||
/sender | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h | ||
client | ||
server | ||
test_objectC.cpp | ||
test_objectC.h | ||
test_objectC.inl | ||
test_objectS.cpp | ||
test_objectS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h | ||
client | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h | ||
client | ||
server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
client | ||
test_objectC.cpp | ||
test_objectC.h | ||
test_objectC.inl | ||
test_objectS.cpp | ||
test_objectS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
TestC.cpp | ||
TestC.h | ||
TestC.inl | ||
TestS.cpp | ||
TestS.h | ||
client | ||
server |
5 changes: 5 additions & 0 deletions
5
TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
/client | ||
/server | ||
testC.cpp | ||
testC.h | ||
testC.inl | ||
testS.cpp | ||
testS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
/Manager | ||
/server | ||
testC.cpp | ||
testC.h | ||
testC.inl | ||
testS.cpp | ||
testS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
/client | ||
/server | ||
/simple_client | ||
ami_testC.cpp | ||
ami_testC.h | ||
ami_testC.inl | ||
ami_testS.cpp | ||
ami_testS.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
/client | ||
/server | ||
testC.cpp | ||
testC.h | ||
testC.inl | ||
testS.cpp | ||
testS.h |
Oops, something went wrong.