-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add selection between last year and range of years
Some organizations prefer to list the last year an author touched a file only
- Loading branch information
Showing
6 changed files
with
77 additions
and
6 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
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
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,22 @@ | ||
diff --git a/code.cpp b/code.cpp | ||
index 9114b7f..85e48ac 100644 | ||
--- a/code.cpp | ||
+++ b/code.cpp | ||
@@ -1,3 +1,17 @@ | ||
+/* | ||
+ * code.cpp | ||
+ * | ||
+ * Copyright (c) 2022 Test Author | ||
+ * All rights reserved. | ||
+ * | ||
+ * Unauthorized copying of this file, via any medium is strictly prohibited. | ||
+ * This file is a proprietary and confidential part of a software product | ||
+ * by Umbrella Inc or part of its connected software and documentation. | ||
+ * | ||
+ * ANY FILE BEARING THIS HEADER SHALL NOT BE RELEASED TO THE | ||
+ * PUBLIC, BE USED, BE MODIFIED OR BE DISTRIBUTED IN ANY WAY | ||
+ * WITHOUT WRITTEN PERMISSION OF UMBRELLA INC. | ||
+ */ | ||
|
||
#include <iostream> | ||
|
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 @@ | ||
{ | ||
"author": { | ||
"years": [ | ||
1980 | ||
], | ||
"latest_year_only": true, | ||
"from_git": true, | ||
"company": "Umbrella Inc" | ||
}, | ||
"license": "Proprietary", | ||
"force_license": true | ||
} |
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,25 @@ | ||
From 5b43dbd60b2355884c3e5176c2c5f02ee93e6982 Mon Sep 17 00:00:00 2001 | ||
From: Test Author <[email protected]> | ||
Date: Wed, 26 Jan 2022 07:55:44 +0100 | ||
Subject: [PATCH] Create main | ||
|
||
--- | ||
code.cpp | 21 +++++++++++++++++++++ | ||
1 file changed, 21 insertions(+) | ||
create mode 100644 code.cpp | ||
|
||
diff --git a/code.cpp b/code.cpp | ||
new file mode 100644 | ||
index 0000000..f53d6b0 | ||
--- /dev/null | ||
+++ b/code.cpp | ||
@@ -0,0 +1,7 @@ | ||
+ | ||
+#include <iostream> | ||
+ | ||
+int main(int argc, char* argv[]){ | ||
+ std::cout << "Hello World" << std::endl; | ||
+ return 0; | ||
+} | ||
-- | ||
2.34.1 |